[ACCEPTED]-Using postgresql gin or gist index with bigint column-bigint

Accepted answer
Score: 23

There's generally no reason to create a 6 GiST or GIN index on a primitive type.

If 5 you do require this - say, if you want a 4 composite index that includes both some 3 primitive types and some more complex GiST 2 / GIN-only index types - then you will want 1 the btree_gist or btree_gin modules, as appropriate.

CREATE EXTENSION btree_gin;

More Related questions