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
2 people authored and Bhargav Dodla committed Jun 10, 2024
1 parent 5415573 commit ef2a2b1
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 ef2a2b1

Please sign in to comment.