使用带bigint列的postgresql gin或gist索引

时间:2014-05-30 07:12:13

标签: postgresql bigint

我正在尝试在bigint列上创建gin索引并收到错误(PostgreSQL 9.1.9 / Debian 7)。

CREATE TABLE test (id bigint CONSTRAINT test_pkey PRIMARY KEY, field bigint);

CREATE INDEX idx_test_field ON test using GIN(field);

ERROR:  data type bigint 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.

对于int8 gin,gist索引是否没有默认支持?

1 个答案:

答案 0 :(得分:14)

通常没有理由在基元类型上创建GiST或GIN索引。

如果你确实需要这个 - 比如说,如果你想要一个包含一些基本类型和一些更复杂的GiST / GIN索引类型的复合索引 - 那么你需要btree_gist或{{1} }模块,视情况而定。

btree_gin