Skip to content

Commit

Permalink
Change position of warning block
Browse files Browse the repository at this point in the history
  • Loading branch information
omkar-foss committed Nov 29, 2024
1 parent abb84b4 commit dd117fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ class BigQueryToMsSqlOperator(BigQueryToSqlBaseOperator):
:param source_project_dataset_table: A dotted ``<project>.<dataset>.<table>``:
the big query table of origin
:param mssql_table: target MsSQL table. It is deprecated: use target_table_name instead. (templated)
.. warning::
The `mssql_table` parameter has been deprecated. Use `target_table_name` instead.
:param target_table_name: target MsSQL table. It takes precedence over mssql_table. (templated)
:param mssql_conn_id: reference to a specific mssql hook
.. warning::
The `mssql_table` parameter has been deprecated. Use `target_table_name` instead.
"""

template_fields: Sequence[str] = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ class BigQueryToMySqlOperator(BigQueryToSqlBaseOperator):
:param mysql_table: target MySQL table, use dot notation to target a
specific database. It is deprecated: use target_table_name instead. (templated)
.. warning::
The `mysql_table` parameter has been deprecated. Use `target_table_name` instead.
:param target_table_name: target MySQL table. It takes precedence over mysql_table. (templated)
:param mysql_conn_id: Reference to :ref:`mysql connection id <howto/connection:mysql>`.
.. warning::
The `mysql_table` parameter has been deprecated. Use `target_table_name` instead.
"""

template_fields: Sequence[str] = (*BigQueryToSqlBaseOperator.template_fields, "dataset_id", "table_id")
Expand Down

0 comments on commit dd117fb

Please sign in to comment.