Add support for view comments for Snowflake (#1287)

Co-authored-by: Joey Hain <joey@sigmacomputing.com>
This commit is contained in:
Simon Sawert 2024-05-30 18:21:39 +02:00 committed by GitHub
parent c2d84f5683
commit 029a999645
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 94 additions and 1 deletions

View file

@ -167,6 +167,7 @@ fn parse_create_view_temporary_if_not_exists() {
materialized,
options,
cluster_by,
comment,
with_no_schema_binding: late_binding,
if_not_exists,
temporary,
@ -178,6 +179,7 @@ fn parse_create_view_temporary_if_not_exists() {
assert!(!or_replace);
assert_eq!(options, CreateTableOptions::None);
assert_eq!(cluster_by, vec![]);
assert!(comment.is_none());
assert!(!late_binding);
assert!(if_not_exists);
assert!(temporary);