alamb commented on code in PR #1712: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1712#discussion_r1946963932
########## src/ast/mod.rs: ########## @@ -2722,6 +2722,17 @@ pub enum Statement { owner: Option<ddl::AlterConnectorOwner>, }, /// ```sql + /// ALTER SESSION SET sessionParam + /// ALTER SESSION UNSET <param_name> [ , <param_name> , ... ] + /// ``` + /// See <https://docs.snowflake.com/en/sql-reference/sql/alter-session> + AlterSession { + /// true is to set for the session parameters, false is to unset + set: bool, + /// The session parameters to set or unset + session_params: DataLoadingOptions, Review Comment: DataLoading options come from here https://github.com/apache/datafusion-sqlparser-rs/blob/86abbd6028d72cee5fa299bc171f492fb722157c/src/ast/helpers/stmt_data_loading.rs#L50 -- 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