benrsatori commented on code in PR #1723: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1723#discussion_r1959458718
########## src/test_utils.rs: ########## @@ -284,6 +284,17 @@ where dialects } +pub fn only_psql_redshift() -> TestedDialects { + TestedDialects { + dialects: vec![ + Box::new(PostgreSqlDialect {}), + Box::new(RedshiftSqlDialect {}), + ], + options: None, + recursion_limit: None, + } +} + Review Comment: Updated the code to use `all_dialects_where` as to your suggestion -- 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