wugeer commented on code in PR #1616: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1616#discussion_r1899131344
########## src/ast/mod.rs: ########## @@ -3401,6 +3401,13 @@ pub enum Statement { partitioned: Option<Vec<Expr>>, table_format: Option<HiveLoadDataFormat>, }, + /// ```sql + /// Rename TABLE tbl_name TO new_tbl_name[, tbl_name2 TO new_tbl_name2] ... + /// ``` + /// Renames one or more tables + /// + /// See Mysql <https://dev.mysql.com/doc/refman/9.1/en/rename-table.html> + RenameTable(Vec<RenameObjectDef>), Review Comment: Done! -- 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