Revert "fix pg_vector extension requires SUPERUSER, but not availabl… (#24108)

This commit is contained in:
crazywoola
2025-08-18 01:46:15 -07:00
committed by GitHub
parent 16d1289a0a
commit 8288b1dcab
2 changed files with 1 additions and 7 deletions

View File

@@ -253,8 +253,7 @@ class PGVector(BaseVector):
return
with self._get_cursor() as cur:
if dify_config.PGVECTOR_IS_OWNER:
cur.execute("CREATE EXTENSION IF NOT EXISTS vector")
cur.execute("CREATE EXTENSION IF NOT EXISTS vector")
cur.execute(SQL_CREATE_TABLE.format(table_name=self.table_name, dimension=dimension))
# PG hnsw index only support 2000 dimension or less
# ref: https://github.com/pgvector/pgvector?tab=readme-ov-file#indexing