Skip to content

Commit 5241ae1

Browse files
progress, just noticed typo
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent 4d3fc56 commit 5241ae1

File tree

1 file changed

+3
-3
lines changed
  • sdk/python/feast/infra/online_stores

1 file changed

+3
-3
lines changed

sdk/python/feast/infra/online_stores/sqlite.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -329,10 +329,10 @@ def retrieve_online_documents(
329329

330330
cur.execute(
331331
f"""
332-
INSERT INTO vec_example(vector_value)
333-
VALUES (?)
332+
INSERT INTO vec_example(rowid, vector_value)
333+
VALUES (?, ?)
334334
""",
335-
(query_embedding_bin)
335+
(0, query_embedding_bin)
336336
)
337337

338338
cur.execute(

0 commit comments

Comments
 (0)