我知道您可以在 hstore 列中的字段上创建索引。我知道您还可以在数组列上创建 GIN 索引。
但是在 hstore 数组上创建索引的语法是什么?
例如
CREATE TABLE customer (
pk serial PRIMARY KEY,
customer hstore,
customer_purchases hstore[]
);
假设客户购买的 hstore 可能是类似的哈希
productId -> 1
price -> 9.99
我在 customer_purchases hstore[] 中有一个数组
我想在 customer.customer_purchases[]-> productId 上创建一个索引
这可能吗?我尝试了 CREATE INDEX 语法的不同组合,但它们似乎都不支持 hstore 数组中的索引字段。