I need to use btree_gist in order to index three fields: a postgis geometry, a date and bigint.
I have postgresql-contrib installed, and I'm able to create the extension without any problem using: CREATE EXTENSION btree_gist;
the extension is visible in the extensions list in pgAdmin, but it is not installed according to the command \dx
in psql.
Obviously trying to create an index with btree_gist results in an error stating that btree_gist does not exist.
I'm running pqsl 9.5.4. Is there something that I'm missing?