diff --git a/trustgraph-flow/trustgraph/direct/cassandra_kg.py b/trustgraph-flow/trustgraph/direct/cassandra_kg.py index 6c5d9c34..742a30dd 100644 --- a/trustgraph-flow/trustgraph/direct/cassandra_kg.py +++ b/trustgraph-flow/trustgraph/direct/cassandra_kg.py @@ -31,9 +31,9 @@ class KnowledgeGraph: self.table = "triples" # Legacy single table else: # New optimized tables - self.subject_table = "triples_by_subject" - self.po_table = "triples_by_po" - self.object_table = "triples_by_object" + self.subject_table = "triples_s" + self.po_table = "triples_p" + self.object_table = "triples_o" if username and password: ssl_context = SSLContext(PROTOCOL_TLSv1_2)