You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/08/18 19:07:01 UTC

[GitHub] [airflow] subkanthi commented on a change in pull request #17695: Fix sqlite hook - insert and replace functions

subkanthi commented on a change in pull request #17695:
URL: https://github.com/apache/airflow/pull/17695#discussion_r691529538



##########
File path: airflow/hooks/dbapi.py
##########
@@ -324,6 +324,7 @@ def insert_rows(self, table, rows, target_fields=None, commit_every=1000, replac
                         lst.append(self._serialize_cell(cell, conn))
                     values = tuple(lst)
                     sql = self._generate_insert_sql(table, values, target_fields, replace, **kwargs)
+                    self.log.info(f"Generated sql: {sql}")

Review comment:
       Fixed. Thanks, @potiuk 




-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org