postgresql - Is there an index type for BIGINT[]? -
i noticed intarray allows index type large int arrays (gist__intbig_ops), there option bigint[] arrays (gist__bigint_ops)? small number of bigint[] values per record.
try gin
index. no extension needed.
create index index_name on tablename using gin(bigint_array_column);
Comments
Post a Comment