aharpervc commented on code in PR #1831: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1831#discussion_r2064175724
########## src/ast/mod.rs: ########## @@ -3403,6 +3447,10 @@ pub enum Statement { /// Cursor name name: Ident, direction: FetchDirection, + /// Differentiate between dialects that fetch `FROM` vs fetch `IN` + /// + /// [MsSql](https://learn.microsoft.com/en-us/sql/t-sql/language-elements/fetch-transact-sql) + from_or_in: AttachedToken, Review Comment: Not sure what's best here, it could also be two separate Optional<AttachedToken> fields -- 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