ryanschneider commented on code in PR #1927: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1927#discussion_r2187875896
########## src/parser/mod.rs: ########## @@ -3571,6 +3572,11 @@ impl<'a> Parser<'a> { ), regexp, }) + } else if dialect.supports_not_null() && negated && null { + Ok(Expr::NotNull { + expr: Box::new(expr), + one_word: false, Review Comment: On second thought I do think I prefer inverting this to `with_space` instead of `one_word`, thoughts? -- 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