alexott commented on code in PR #27854:
URL: https://github.com/apache/airflow/pull/27854#discussion_r1030360665
##########
airflow/providers/databricks/operators/databricks_sql.py:
##########
@@ -114,16 +112,17 @@ def __init__(
**client_parameters,
**hook_params,
}
+ self.schema = schema
def get_db_hook(self) -> DatabricksSqlHook:
return DatabricksSqlHook(self.databricks_conn_id, **self.hook_params)
- def _process_output(self, schema, results):
Review Comment:
Just to clarity. `schema` in class constructor is the string with the name
of the database, while the `schema` in parameters is the actual table schema
that was returned as a query result.
--
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]