@@ -6251,6 +6251,7 @@ fn parse_create_view() {
62516251 materialized,
62526252 options,
62536253 cluster_by,
6254+ comment,
62546255 with_no_schema_binding : late_binding,
62556256 if_not_exists,
62566257 temporary,
@@ -6262,6 +6263,7 @@ fn parse_create_view() {
62626263 assert ! ( !or_replace) ;
62636264 assert_eq ! ( options, CreateTableOptions :: None ) ;
62646265 assert_eq ! ( cluster_by, vec![ ] ) ;
6266+ assert ! ( comment. is_none( ) ) ;
62656267 assert ! ( !late_binding) ;
62666268 assert ! ( !if_not_exists) ;
62676269 assert ! ( !temporary) ;
@@ -6305,6 +6307,7 @@ fn parse_create_view_with_columns() {
63056307 query,
63066308 materialized,
63076309 cluster_by,
6310+ comment,
63086311 with_no_schema_binding : late_binding,
63096312 if_not_exists,
63106313 temporary,
@@ -6325,6 +6328,7 @@ fn parse_create_view_with_columns() {
63256328 assert ! ( !materialized) ;
63266329 assert ! ( !or_replace) ;
63276330 assert_eq ! ( cluster_by, vec![ ] ) ;
6331+ assert ! ( comment. is_none( ) ) ;
63286332 assert ! ( !late_binding) ;
63296333 assert ! ( !if_not_exists) ;
63306334 assert ! ( !temporary) ;
@@ -6345,6 +6349,7 @@ fn parse_create_view_temporary() {
63456349 materialized,
63466350 options,
63476351 cluster_by,
6352+ comment,
63486353 with_no_schema_binding : late_binding,
63496354 if_not_exists,
63506355 temporary,
@@ -6356,6 +6361,7 @@ fn parse_create_view_temporary() {
63566361 assert ! ( !or_replace) ;
63576362 assert_eq ! ( options, CreateTableOptions :: None ) ;
63586363 assert_eq ! ( cluster_by, vec![ ] ) ;
6364+ assert ! ( comment. is_none( ) ) ;
63596365 assert ! ( !late_binding) ;
63606366 assert ! ( !if_not_exists) ;
63616367 assert ! ( temporary) ;
@@ -6376,6 +6382,7 @@ fn parse_create_or_replace_view() {
63766382 query,
63776383 materialized,
63786384 cluster_by,
6385+ comment,
63796386 with_no_schema_binding : late_binding,
63806387 if_not_exists,
63816388 temporary,
@@ -6387,6 +6394,7 @@ fn parse_create_or_replace_view() {
63876394 assert ! ( !materialized) ;
63886395 assert ! ( or_replace) ;
63896396 assert_eq ! ( cluster_by, vec![ ] ) ;
6397+ assert ! ( comment. is_none( ) ) ;
63906398 assert ! ( !late_binding) ;
63916399 assert ! ( !if_not_exists) ;
63926400 assert ! ( !temporary) ;
@@ -6411,6 +6419,7 @@ fn parse_create_or_replace_materialized_view() {
64116419 query,
64126420 materialized,
64136421 cluster_by,
6422+ comment,
64146423 with_no_schema_binding : late_binding,
64156424 if_not_exists,
64166425 temporary,
@@ -6422,6 +6431,7 @@ fn parse_create_or_replace_materialized_view() {
64226431 assert ! ( materialized) ;
64236432 assert ! ( or_replace) ;
64246433 assert_eq ! ( cluster_by, vec![ ] ) ;
6434+ assert ! ( comment. is_none( ) ) ;
64256435 assert ! ( !late_binding) ;
64266436 assert ! ( !if_not_exists) ;
64276437 assert ! ( !temporary) ;
@@ -6442,6 +6452,7 @@ fn parse_create_materialized_view() {
64426452 materialized,
64436453 options,
64446454 cluster_by,
6455+ comment,
64456456 with_no_schema_binding : late_binding,
64466457 if_not_exists,
64476458 temporary,
@@ -6453,6 +6464,7 @@ fn parse_create_materialized_view() {
64536464 assert_eq ! ( options, CreateTableOptions :: None ) ;
64546465 assert ! ( !or_replace) ;
64556466 assert_eq ! ( cluster_by, vec![ ] ) ;
6467+ assert ! ( comment. is_none( ) ) ;
64566468 assert ! ( !late_binding) ;
64576469 assert ! ( !if_not_exists) ;
64586470 assert ! ( !temporary) ;
@@ -6473,6 +6485,7 @@ fn parse_create_materialized_view_with_cluster_by() {
64736485 materialized,
64746486 options,
64756487 cluster_by,
6488+ comment,
64766489 with_no_schema_binding : late_binding,
64776490 if_not_exists,
64786491 temporary,
@@ -6484,6 +6497,7 @@ fn parse_create_materialized_view_with_cluster_by() {
64846497 assert_eq ! ( options, CreateTableOptions :: None ) ;
64856498 assert ! ( !or_replace) ;
64866499 assert_eq ! ( cluster_by, vec![ Ident :: new( "foo" ) ] ) ;
6500+ assert ! ( comment. is_none( ) ) ;
64876501 assert ! ( !late_binding) ;
64886502 assert ! ( !if_not_exists) ;
64896503 assert ! ( !temporary) ;
0 commit comments