Skip to content

Commit 4eab616

Browse files
authored
add missing project_id in BigQueryGetDataOperator (#30651)
1 parent d3aeb4d commit 4eab616

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

β€Žairflow/providers/google/cloud/operators/bigquery.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -905,6 +905,7 @@ def execute(self, context: Context):
905905
schema: dict[str, list] = hook.get_schema(
906906
dataset_id=self.dataset_id,
907907
table_id=self.table_id,
908+
project_id=self.project_id,
908909
)
909910
if "fields" in schema:
910911
self.selected_fields = ",".join([field["name"] for field in schema["fields"]])

0 commit comments

Comments
 (0)