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
In CassandraVectorStore, when the table name does not exist, in the checkSchemaValid method, the table name is missing in the exception.
Preconditions.checkState(this.session.getMetadata()
.getKeyspace(this.schema.keyspace)
.get()
.getTable(this.schema.table)
.isPresent(), "table %s does not exist");
In
CassandraVectorStore
, when the table name does not exist, in thecheckSchemaValid
method, the table name is missing in the exception.spring-ai/vector-stores/spring-ai-cassandra-store/src/main/java/org/springframework/ai/vectorstore/cassandra/CassandraVectorStore.java
Line 549 in e723371
The text was updated successfully, but these errors were encountered: