Commit e09015c 1 parent b77e60e commit e09015c Copy full SHA for e09015c
File tree 2 files changed +2
-6
lines changed
sdk/python/feast/infra/offline_stores
contrib/postgres_offline_store
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -365,9 +365,7 @@ def build_point_in_time_query(
365
365
full_feature_names : bool = False ,
366
366
) -> str :
367
367
"""Build point-in-time query between each feature view table and the entity dataframe for PostgreSQL"""
368
- template = Environment (autoescape = True , loader = BaseLoader ()).from_string (
369
- source = query_template
370
- )
368
+ template = Environment (loader = BaseLoader ()).from_string (source = query_template )
371
369
372
370
final_output_feature_names = list (entity_df_columns )
373
371
final_output_feature_names .extend (
Original file line number Diff line number Diff line change @@ -186,9 +186,7 @@ def build_point_in_time_query(
186
186
full_feature_names : bool = False ,
187
187
) -> str :
188
188
"""Build point-in-time query between each feature view table and the entity dataframe for Bigquery and Redshift"""
189
- template = Environment (autoescape = True , loader = BaseLoader ()).from_string (
190
- source = query_template
191
- )
189
+ template = Environment (loader = BaseLoader ()).from_string (source = query_template )
192
190
193
191
final_output_feature_names = list (entity_df_columns )
194
192
final_output_feature_names .extend (
You can’t perform that action at this time.
0 commit comments