Skip to content
Merged
Prev Previous commit
Next Next commit
fix test
Signed-off-by: HaoXuAI <sduxuhao@gmail.com>
  • Loading branch information
HaoXuAI committed Apr 18, 2025
commit 618c4b8218a3e489092f8ab73ec0f72799e6ef63
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def pull_all_from_table_or_query(
query = f"""
SELECT {fields_with_alias_string}
FROM {from_expression}
{timestamp_filter}
WHERE {timestamp_filter}
"""

return SparkRetrievalJob(
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/offline_stores/snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def pull_all_from_table_or_query(
query = f"""
SELECT {field_string}
FROM {from_expression}
{timestamp_filter}
WHERE {timestamp_filter}
"""

return SnowflakeRetrievalJob(
Expand Down
Loading