Skip to content

Commit 0aad21e

Browse files
committed
Updated comment
Signed-off-by: leijendary <[email protected]>
1 parent 29204fe commit 0aad21e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vector-stores/spring-ai-pgvector-store/src/main/java/org/springframework/ai/chat/memory/PgVectorChatMemoryConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ void initializeSchema() {
118118
var indexName = String
119119
.format("%s_%s_%s_idx", this.getTableName(), this.getSessionIdColumnName(), this.getExchangeIdColumnName())
120120
// Keywords in postgres has to be wrapped in double quotes. It is possible
121-
// that the table or column may
122-
// be a reserved keyword. If so, just remove them.
121+
// that the table or column may be a reserved keyword. If so, just remove
122+
// them.
123123
.replaceAll("\"", "");
124124

125125
this.jdbcTemplate.execute(String.format("CREATE SCHEMA IF NOT EXISTS %s", this.getSchemaName()));

0 commit comments

Comments
 (0)