potiuk commented on code in PR #23971:
URL: https://github.com/apache/airflow/pull/23971#discussion_r885614694


##########
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:
   Basically none of the providers will be able to use it for quite some time 
anyway as this is part of Airlfow, so really this is not a feature of any of 
the providers, but it is feature of Airlfow - you will not use it by installing 
a specific version of a specific providers but by migrating to Airlfow 2.4. 



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