BigQuery: Add support for CREATE SCHEMA options (#1742)

This commit is contained in:
Ifeanyi Ubah 2025-03-14 08:00:19 +01:00 committed by GitHub
parent 862e887a66
commit f81aed6359
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 57 additions and 6 deletions

View file

@ -988,6 +988,8 @@ fn parse_create_schema_if_not_exists() {
Statement::CreateSchema {
if_not_exists: true,
schema_name,
options: _,
default_collate_spec: _,
} => assert_eq!("schema_name", schema_name.to_string()),
_ => unreachable!(),
}