iffyio merged PR #2004:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2004
--
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
Vedin commented on code in PR #2004:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/2004#discussion_r2298260257
##
src/parser/mod.rs:
##
@@ -4713,7 +4713,10 @@ impl<'a> Parser<'a> {
let create_view_params = self.parse_create_view_params()?;
if sel
iffyio commented on code in PR #2004:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/2004#discussion_r2287939192
##
src/parser/mod.rs:
##
@@ -4713,7 +4713,10 @@ impl<'a> Parser<'a> {
let create_view_params = self.parse_create_view_params()?;
if se
Vedin opened a new pull request, #2004:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2004
Snowflake views support `SECURE` keyword on creation.
https://docs.snowflake.com/en/sql-reference/sql/create-view#syntax
This PR introduced this keyword and view-related logic.
-