@@ -7806,6 +7806,7 @@ fn parse_create_view() {
78067806 temporary,
78077807 to,
78087808 params,
7809+ secure : _,
78097810 } => {
78107811 assert_eq ! ( "myschema.myview" , name. to_string( ) ) ;
78117812 assert_eq ! ( Vec :: <ViewColumnDef >:: new( ) , columns) ;
@@ -7870,6 +7871,7 @@ fn parse_create_view_with_columns() {
78707871 temporary,
78717872 to,
78727873 params,
7874+ secure : _,
78737875 } => {
78747876 assert_eq ! ( "v" , name. to_string( ) ) ;
78757877 assert_eq ! (
@@ -7917,6 +7919,7 @@ fn parse_create_view_temporary() {
79177919 temporary,
79187920 to,
79197921 params,
7922+ secure : _,
79207923 } => {
79217924 assert_eq ! ( "myschema.myview" , name. to_string( ) ) ;
79227925 assert_eq ! ( Vec :: <ViewColumnDef >:: new( ) , columns) ;
@@ -7954,6 +7957,7 @@ fn parse_create_or_replace_view() {
79547957 temporary,
79557958 to,
79567959 params,
7960+ secure : _,
79577961 } => {
79587962 assert_eq ! ( "v" , name. to_string( ) ) ;
79597963 assert_eq ! ( columns, vec![ ] ) ;
@@ -7995,6 +7999,7 @@ fn parse_create_or_replace_materialized_view() {
79957999 temporary,
79968000 to,
79978001 params,
8002+ secure : _,
79988003 } => {
79998004 assert_eq ! ( "v" , name. to_string( ) ) ;
80008005 assert_eq ! ( columns, vec![ ] ) ;
@@ -8032,6 +8037,7 @@ fn parse_create_materialized_view() {
80328037 temporary,
80338038 to,
80348039 params,
8040+ secure : _,
80358041 } => {
80368042 assert_eq ! ( "myschema.myview" , name. to_string( ) ) ;
80378043 assert_eq ! ( Vec :: <ViewColumnDef >:: new( ) , columns) ;
@@ -8069,6 +8075,7 @@ fn parse_create_materialized_view_with_cluster_by() {
80698075 temporary,
80708076 to,
80718077 params,
8078+ secure : _,
80728079 } => {
80738080 assert_eq ! ( "myschema.myview" , name. to_string( ) ) ;
80748081 assert_eq ! ( Vec :: <ViewColumnDef >:: new( ) , columns) ;
0 commit comments