Z
Zerops2d ago
Amos

Postgres vector extension

From what I can tell it's already installed, but it errors when I run a migration with the vector type
error: type "vector" does not exist
error: type "vector" does not exist
Also trying to enable it manually with
CREATE EXTENSION vector;
CREATE EXTENSION vector;
results in
ERROR: permission denied to create extension "vector"
HINT: Must be superuser to create this extension.
ERROR: permission denied to create extension "vector"
HINT: Must be superuser to create this extension.
Solution:
Or to explain it a bit better, since my previous message merges databases and schemas into one (sorry for the confusion). We create 2 users, postgres and db (this one is named as your service) and they both have public schema. So when you login as postgres user, it will by default select postgres database, and you need to switch to db to install extenstions for that DB....
No description
Jump to solution
11 Replies
Aleš
Aleš2d ago
you can use super user creadentials they are available in the databases' env variables just as the standard credentials
Michal Saloň
Michal Saloň2d ago
As Ales said, standard user doesn't have superuser permissions. To create/enable extensions, you need to use the superuser credendials, see: https://docs.zerops.io/postgresql/how-to/manage#how-to-install-and-manage-postgresql-plugins
Amos
AmosOP2d ago
Perfect, thanks guys Weird, I created it as superuser, but then it is still saying that "vector" does not exist
Michal Saloň
Michal Saloň2d ago
Did you create it for the correct schema?
Amos
AmosOP2d ago
I mean, there is only 1, public
SELECT * FROM pg_available_extensions WHERE name = 'vector';
SELECT * FROM pg_available_extensions WHERE name = 'vector';
shows it's installed for the superuser, but for the normal user it's not
Michal Saloň
Michal Saloň2d ago
By default postgres user has it's own postgres schema. So when you create a DB, there are 3 schemas:
DBNAME - schema named same as your service, usually just "db"
public - standard schema created by postgres, we don't use it for anything
postgres - default schema for superuser
DBNAME - schema named same as your service, usually just "db"
public - standard schema created by postgres, we don't use it for anything
postgres - default schema for superuser
So when you log in as postgres user and do not specify a schema, it will default to postgres schema database.
Amos
AmosOP2d ago
I immediately created it for public the first time
Solution
Michal Saloň
Michal Saloň2d ago
Or to explain it a bit better, since my previous message merges databases and schemas into one (sorry for the confusion). We create 2 users, postgres and db (this one is named as your service) and they both have public schema. So when you login as postgres user, it will by default select postgres database, and you need to switch to db to install extenstions for that DB.
No description
Amos
AmosOP2d ago
Ok, was confused, I think I fixed it now
Michal Saloň
Michal Saloň2d ago
Yeah sorry, I managed to confuse myself while explaining it :skillIssue:
Amos
AmosOP2d ago
Np 😛 happens to me all the time too

Did you find this page helpful?