Skip to content

Commit

Permalink
progress, just noticed typo
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Arceo <[email protected]>
  • Loading branch information
franciscojavierarceo committed May 27, 2024
1 parent 4d3fc56 commit 5241ae1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdk/python/feast/infra/online_stores/sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,10 @@ def retrieve_online_documents(

cur.execute(
f"""
INSERT INTO vec_example(vector_value)
VALUES (?)
INSERT INTO vec_example(rowid, vector_value)
VALUES (?, ?)
""",
(query_embedding_bin)
(0, query_embedding_bin)
)

cur.execute(
Expand Down

0 comments on commit 5241ae1

Please sign in to comment.