You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: vector-stores/spring-ai-pgvector-store/src/main/java/org/springframework/ai/vectorstore/pgvector/PgVectorStore.java
+16-3
Original file line number
Diff line number
Diff line change
@@ -420,7 +420,10 @@ public void afterPropertiesSet() {
420
420
// Enable the PGVector, JSONB and UUID support.
421
421
this.jdbcTemplate.execute("CREATE EXTENSION IF NOT EXISTS vector");
422
422
this.jdbcTemplate.execute("CREATE EXTENSION IF NOT EXISTS hstore");
423
-
this.jdbcTemplate.execute("CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\"");
423
+
424
+
if (this.idType == PgIdType.UUID) {
425
+
this.jdbcTemplate.execute("CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\"");
426
+
}
424
427
425
428
this.jdbcTemplate.execute(String.format("CREATE SCHEMA IF NOT EXISTS %s", this.getSchemaName()));
426
429
@@ -431,12 +434,12 @@ public void afterPropertiesSet() {
Copy file name to clipboardexpand all lines: vector-stores/spring-ai-pgvector-store/src/test/java/org/springframework/ai/vectorstore/pgvector/PgVectorStoreIT.java
+29-26
Original file line number
Diff line number
Diff line change
@@ -112,27 +112,6 @@ public static String getText(String uri) {
0 commit comments