uuid数组上的PostgreSQL GIN索引

时间:2013-11-13 16:54:43

标签: arrays postgresql indexing uuid

我想在uuid[]上使用GIN索引(以便对uuids数组进行有效的成员资格测试)。但是当我尝试它时PostgreSQL给了我一个错误:

mydb=> CREATE TABLE foo (val uuid[]);
CREATE TABLE
mydb=> CREATE INDEX foo_idx ON foo USING GIN(val);
ERROR:  data type uuid[] has no default operator class for access method "gin"
HINT:  You must specify an operator class for the index or define a default operator class for the data type.

如何添加必要的运算符类以使其有效?

请注意,this类似于citext类型的问题,但提供的答案不起作用。

2 个答案:

答案 0 :(得分:26)

这可以使用以下运算符类来完成:

CREATE OPERATOR CLASS _uuid_ops DEFAULT 
  FOR TYPE _uuid USING gin AS 
  OPERATOR 1 &&(anyarray, anyarray), 
  OPERATOR 2 @>(anyarray, anyarray), 
  OPERATOR 3 <@(anyarray, anyarray), 
  OPERATOR 4 =(anyarray, anyarray), 
  FUNCTION 1 uuid_cmp(uuid, uuid), 
  FUNCTION 2 ginarrayextract(anyarray, internal, internal), 
  FUNCTION 3 ginqueryarrayextract(anyarray, internal, smallint, internal, internal, internal, internal), 
  FUNCTION 4 ginarrayconsistent(internal, smallint, anyarray, integer, internal, internal, internal, internal), 
  STORAGE uuid;

this致使我指向正确的方向。

相关文档位于Interfacing extensions to indexes,特别是GIN的操作员策略和功能编号。

答案 1 :(得分:3)

从PostgreSQL 10开始,不再需要自定义运算符类_uuid_ops,因为array_ops上现在有一个通用的内置操作类anyarry(请参阅:https://www.postgresql.org/docs/current/static/gin-builtin-opclasses.html