aaron-ang edited a comment on issue #16906:
URL: https://github.com/apache/airflow/issues/16906#issuecomment-877308174
perhaps I should share the structure of my query to make myself clearer. My
query works perfectly in Snowflake, but when it is picked up by Airflow, it
gets cut off.
```
WITH SCFS_COMPANIES AS (
select...
from...
where...
QUALIFY ROW_NUMBER() OVER (PARTITION BY ... ORDER BY ... DESC) = 1
)
"select column as column_name"
column2 as column_name_2
from...
```
Basically the line in quotes got ignore/did not get captured. Unless there
is something regarding semicolon rules that I am unaware of? Thanks.
--
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]