tomershaniii commented on code in PR #1521: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1521#discussion_r1845312004
########## tests/sqlparser_snowflake.rs: ########## @@ -2783,6 +2783,14 @@ fn test_parentheses_overflow() { } #[test] + +fn test_nested_select_with_lateral_flatten() { + let sql = "SELECT a FROM b, LATERAL FLATTEN(input => events)"; + let _ = snowflake().parse_sql_statements(&sql).unwrap(); + + let sql = "SELECT (SELECT a FROM b, LATERAL FLATTEN(input => events))"; + let _ = snowflake().parse_sql_statements(&sql).unwrap(); Review Comment: don't see anything unusual and test are passing, guess this is some github artifact. -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org