@@ -8317,6 +8317,7 @@ fn parse_create_view() {
83178317 params,
83188318 name_before_not_exists: _,
83198319 secure: _,
8320+ copy_grants: _,
83208321 }) => {
83218322 assert_eq!(or_alter, false);
83228323 assert_eq!("myschema.myview", name.to_string());
@@ -8435,6 +8436,7 @@ fn parse_create_view_temporary() {
84358436 params,
84368437 name_before_not_exists: _,
84378438 secure: _,
8439+ copy_grants: _,
84388440 }) => {
84398441 assert_eq!(or_alter, false);
84408442 assert_eq!("myschema.myview", name.to_string());
@@ -8476,6 +8478,7 @@ fn parse_create_or_replace_view() {
84768478 params,
84778479 name_before_not_exists: _,
84788480 secure: _,
8481+ copy_grants: _,
84798482 }) => {
84808483 assert_eq!(or_alter, false);
84818484 assert_eq!("v", name.to_string());
@@ -8521,6 +8524,7 @@ fn parse_create_or_replace_materialized_view() {
85218524 params,
85228525 name_before_not_exists: _,
85238526 secure: _,
8527+ copy_grants: _,
85248528 }) => {
85258529 assert_eq!(or_alter, false);
85268530 assert_eq!("v", name.to_string());
@@ -8562,6 +8566,7 @@ fn parse_create_materialized_view() {
85628566 params,
85638567 name_before_not_exists: _,
85648568 secure: _,
8569+ copy_grants: _,
85658570 }) => {
85668571 assert_eq!(or_alter, false);
85678572 assert_eq!("myschema.myview", name.to_string());
@@ -8603,6 +8608,7 @@ fn parse_create_materialized_view_with_cluster_by() {
86038608 params,
86048609 name_before_not_exists: _,
86058610 secure: _,
8611+ copy_grants: _,
86068612 }) => {
86078613 assert_eq!(or_alter, false);
86088614 assert_eq!("myschema.myview", name.to_string());
0 commit comments