pgvector
Last updated
Last updated
ERROR: Unique constraint failed on the fields: (userId
)
could not open extension control file "/opt/homebrew/share/postgresql@14/extension/vector.control": No such file or directory
👉🏻 vector extension 기능이 설치되어있지 않을 때 발생
postgres로 접속한 후, vector extension을 생성한다.
ERROR: permission denied to create extension "vector" 👉🏻 vector를 만들 권한이 없는 user일 경우 발생
user role에 Superuser
가 있는지 확인 후, 없다면 ALTER USER myuser with superuser;
실행 ➡️ 권한 등록