Skip to content

Commit

Permalink
fix: Missing Catalog argument in athena connector (feast-dev#3661)
Browse files Browse the repository at this point in the history
update Catalog argument in athena connector

Signed-off-by: Gyumin Lee <t1100394@T1100394PM01.local>
Co-authored-by: Gyumin Lee <t1100394@T1100394PM01.local>
  • Loading branch information
GyuminJack and Gyumin Lee authored Jul 3, 2023
1 parent d372a09 commit f6d3caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/utils/aws_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ def execute_athena_query_async(
# return athena_data_client.execute_statement(
return athena_data_client.start_query_execution(
QueryString=query,
QueryExecutionContext={"Database": database},
QueryExecutionContext={"Database": database, "Catalog": data_source},
WorkGroup=workgroup,
)

Expand Down

0 comments on commit f6d3caf

Please sign in to comment.