Google Cloud SQL recently announced support for Postgres extension pgvector. But it's not available in the list of extensions supported SELECT * FROM pg_available_extensions;
. I'm on version 9.6. What do I need to do to see the extension?
pgvector extension on Google Cloud SQL Postgres
1.2k Views Asked by Abs At
2
Based on this documentation on
pgvector
installation:It is also mentioned through this changelog:
Meaning that the minimun Postgres version should be at least
11
or higher. I've tried installing the extension using version9.6
and10
, both unsuccessful.If you really want this version to be available, you may either use Postgres version
11
or higher or file this as a feature request through this link.