Fix missing table name in exception message in CassandraVectorStore (#2842)

Updated the `Preconditions.checkState` call to include `this.schema.table`
as an argument.

Signed-off-by: jitokim <pigberger70@gmail.com>
This commit is contained in:
jito
2025-04-29 19:15:01 +09:00
committed by GitHub
parent 2e0017db49
commit 53406c1dd3

View File

@@ -546,7 +546,7 @@ public class CassandraVectorStore extends AbstractObservationVectorStore impleme
.getKeyspace(this.schema.keyspace)
.get()
.getTable(this.schema.table)
.isPresent(), "table %s does not exist");
.isPresent(), "table %s does not exist", this.schema.table);
TableMetadata tableMetadata = this.session.getMetadata()
.getKeyspace(this.schema.keyspace)