We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a4339 commit 773822fCopy full SHA for 773822f
1 file changed
neumai/neumai/SinkConnectors/LanceDBSink.py
@@ -93,7 +93,7 @@ def store(self, vectors_to_store: List[NeumVector]) -> int:
93
dic[k] = v
94
data.append(dic)
95
96
- tbl = db.create_table(table_name, data=data)
+ tbl = db.create_table(table_name, data=data, mode="overwrite")
97
if tbl:
98
return len(tbl.to_pandas())
99
raise LanceDBInsertionException("LanceDB storing failed. Try later")
0 commit comments