aharpervc commented on code in PR #2041: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2041#discussion_r2382828381
########## tests/sqlparser_common.rs: ########## @@ -16533,6 +16537,40 @@ fn parse_create_procedure_with_parameter_modes() { } } +#[test] +fn create_procedure_with_parameter_default_value() { + let sql = r#"CREATE PROCEDURE test_proc (a INT = 42) AS BEGIN SELECT 1; END"#; Review Comment: Done 👍. I've also added an additional unit test for SQL Server, since the parameter identifier syntax is different there. -- 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