potiuk commented on code in PR #23971:
URL: https://github.com/apache/airflow/pull/23971#discussion_r885612743
##########
airflow/hooks/dbapi.py:
##########
@@ -160,7 +161,25 @@ def get_first(self, sql, parameters=None):
cur.execute(sql)
return cur.fetchone()
- def run(self, sql, autocommit=False, parameters=None, handler=None):
+ @staticmethod
+ def maybe_split_sql_string(sql: str) -> List[str]:
+ """
+ Splits strings consisting of multiple SQL expressions into an
+ TODO: do we need something more sophisticated?
+
+ :param sql: SQL string potentially consisting of multiple expressions
+ :return: list of individual expressions
+ """
+ splits = [s.strip() for s in re.split(";\\s*\r?\n", sql) if s.strip()
!= ""]
+ return splits
Review Comment:
It shoud be in Airlfow itself.
--
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]