Jarek Potiuk

Results 1573 comments of Jarek Potiuk

Marked it as good first issue.

No problem. Good to know :). This is what testing is about @alexott :).

@LaPetiteSouris - thank you ! This is cool to get it confirmed even now !

> Found another issue with Databricks provider - DBSQL operator doesn't work anymore, most probably caused by #23971 - it looks like `split_sql_string` doesn't handle correctly simple SQL queries (like...

> I don’t have something to test, but I’m concerned that if it broke databricks sql, may it break other as well? @alexott Can you mae a PR fixing it...

Just looked it up @alexott -> I do not think it is breaking other providers (@kazanzhy to confirm). Only Databricks and Snowflake hooks have `split_statements` set to True by defauilt...

Right - I see. I think the mistake is that it should be (@kazanzhy ?) : ``` statements = [s.rstrip(';') if s.endswith(';') else s.strip() for s in splits if s.strip()...