pravic commented on code in PR #2024: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2024#discussion_r2336307564
########## src/parser/mod.rs: ########## @@ -12260,6 +12260,27 @@ impl<'a> Parser<'a> { }) } + /// Parse a CTE or CSE. + pub fn parse_cte_or_cse(&mut self) -> Result<CteOrCse, ParserError> { Review Comment: Not `pub`? Here there is a suggestion to use a parser method directly (as a solution/workaround for some problem): #713 So, I assumed all/most of `Parser` methods are/should be available to users. -- 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