Skip to content

Commit

Permalink
fix sql registry update stmt
Browse files Browse the repository at this point in the history
Signed-off-by: Nmroth42 <mannoroth42@gmail.com>
  • Loading branch information
Nmroth42 committed Mar 26, 2024
1 parent cf58ebe commit 56f909a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/registry/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ def _apply_object(
}
update_stmt = (
update(table)
.where(getattr(table.c, id_field_name) == name)
.where(getattr(table.c, id_field_name) == name, table.c.project_id == project)
.values(
values,
)
Expand Down

0 comments on commit 56f909a

Please sign in to comment.