VladaZakharova commented on code in PR #33930:
URL: https://github.com/apache/airflow/pull/33930#discussion_r1413959065


##########
airflow/providers/google/cloud/operators/bigquery.py:
##########
@@ -1198,6 +1198,14 @@ def __init__(
         impersonation_chain: str | Sequence[str] | None = None,
         **kwargs,
     ) -> None:
+        if bigquery_conn_id:
+            warnings.warn(
+                "The bigquery_conn_id parameter has been deprecated. Use the 
gcp_conn_id parameter instead.",
+                AirflowProviderDeprecationWarning,
+                stacklevel=2,
+            )
+            gcp_conn_id = bigquery_conn_id
+        

Review Comment:
   Hello!
   I don't think we want to update this for deprecated operators. 
   For now the discussion with Google was opened to agree on some deprecation 
policy, so you can expect some PRs in the future from out team to get rid of 
bunch of deprecated operators.
   Thank you :)
   



-- 
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]

Reply via email to