We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c111c21 commit 1bf1650Copy full SHA for 1bf1650
1 file changed
tests/sqlparser_snowflake.rs
@@ -4100,3 +4100,17 @@ fn parse_connect_by_root_operator() {
4100
"sql parser error: Expected an expression, found: FROM"
4101
);
4102
}
4103
+
4104
+#[test]
4105
+fn test_snowflake_create_view_with_composite_tag() {
4106
+ let create_view_with_tag =
4107
+ r#"CREATE VIEW X (COL WITH TAG (foo.bar.baz.pii='email')) AS SELECT * FROM Y"#;
4108
+ snowflake().verified_stmt(create_view_with_tag);
4109
+}
4110
4111
4112
+fn test_snowflake_create_view_with_composite_policy_name() {
4113
4114
+ r#"CREATE VIEW X (COL WITH MASKING POLICY foo.bar.baz) AS SELECT * FROM Y"#;
4115
4116
0 commit comments