Skip to content

Commit

Permalink
Format SQL query
Browse files Browse the repository at this point in the history
  • Loading branch information
job-almekinders committed Jun 26, 2024
1 parent fb0d977 commit 16aa614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/online_stores/contrib/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _construct_query_and_params(
query = sql.SQL(
"""
SELECT entity_key, feature_name, value, event_ts
FROM {} WHERE entity_key = ANY(%s) and feature_name = ANY(%s);
FROM {} WHERE entity_key = ANY(%s) AND feature_name = ANY(%s);
"""
).format(
sql.Identifier(_table_id(config.project, table)),
Expand Down

0 comments on commit 16aa614

Please sign in to comment.