Update graphiti_core/driver/kuzu_driver.py
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
This commit is contained in:
parent
c6a192a274
commit
14c120341b
1 changed files with 1 additions and 1 deletions
|
|
@ -160,7 +160,7 @@ class KuzuDriver(GraphDriver):
|
|||
|
||||
# Only load the `fts` extension if it's not already loaded, otherwise throw an error.
|
||||
result, _, _ = await self.execute_query('CALL SHOW_LOADED_EXTENSIONS() RETURN *;')
|
||||
if len(result) == 0:
|
||||
if not any('fts' in str(ext).lower() for ext in result):
|
||||
fulltext_indices.insert(
|
||||
0,
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue