Skip to content

Commit 56f909a

Browse files
committed
fix sql registry update stmt
Signed-off-by: Nmroth42 <mannoroth42@gmail.com>
1 parent cf58ebe commit 56f909a

File tree

1 file changed

+1
-1
lines changed
  • sdk/python/feast/infra/registry

1 file changed

+1
-1
lines changed

sdk/python/feast/infra/registry/sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ def _apply_object(
691691
}
692692
update_stmt = (
693693
update(table)
694-
.where(getattr(table.c, id_field_name) == name)
694+
.where(getattr(table.c, id_field_name) == name, table.c.project_id == project)
695695
.values(
696696
values,
697697
)

0 commit comments

Comments
 (0)