feat: adds no cache case

This commit is contained in:
hajdul88 2025-10-08 10:19:34 +02:00
parent e74f7cd6ab
commit a170355f94

View file

@ -258,7 +258,10 @@ class KuzuAdapter(GraphDBInterface):
if self.open_connections == 0:
self.close()
return result
return result
else:
result = await loop.run_in_executor(self.executor, blocking_query)
return result
def close(self):
if self.connection: