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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -