gustavom2998 commented on issue #25781: URL: https://github.com/apache/airflow/issues/25781#issuecomment-1227844369
Found an issue/bug while using the code from the last merge. In [line 443](https://github.com/apache/airflow/blob/main/airflow/providers/google/cloud/operators/bigquery.py#L443) we need to add the following row to the get_schema operation, otherwise the check goes to the wrong project - so the operator won't work. I managed to get it working locally by making the following change: ```python schema: Dict[str, list] = hook.get_schema( dataset_id=self.dataset_id, table_id=self.table_id, project_id=self.project_id ) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
