mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-24 12:41:02 +02:00
ALLOW FILTERING needed on get_all
This commit is contained in:
parent
34c2ae5ca6
commit
91ca8dadb4
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ class KnowledgeGraph:
|
|||
|
||||
# Query statements for optimized access
|
||||
self.get_all_stmt = self.session.prepare(
|
||||
f"SELECT s, p, o FROM {self.subject_table} WHERE collection = ? LIMIT ?"
|
||||
f"SELECT s, p, o FROM {self.subject_table} WHERE collection = ? LIMIT ? ALLOW FILTERING"
|
||||
)
|
||||
|
||||
self.get_s_stmt = self.session.prepare(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue