MohamedAbdeen21 commented on code in PR #1757: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1757#discussion_r1986585508
########## src/ast/mod.rs: ########## @@ -2947,6 +2947,17 @@ pub enum Statement { variables: OneOrManyWithParens<ObjectName>, value: Vec<Expr>, }, + + /// ```sql + /// SET <variable> = expression [, <variable> = expression]*; + /// ``` + /// + /// Note: this is a MySQL-specific statement. + /// Refer to [`Dialect.supports_comma_separated_set_assignments`] + SetVariables { + variables: Vec<ObjectName>, + values: Vec<Expr>, + }, Review Comment: The main reason I wanted to have a follow-up was to give the discussion more visibility, but since we agree on the approach now, I'm down to implement the enum suggested above as part of this change. I'll push the change before EOD -- 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