We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 992a7e9 commit b9ff319Copy full SHA for b9ff319
tests/sqlparser_common.rs
@@ -7898,7 +7898,7 @@ fn parse_exists_subquery() {
7898
#[test]
7899
fn parse_create_database() {
7900
let sql = "CREATE DATABASE mydb";
7901
- match verified_stmt(sql) {
+ match all_dialects_except(|d| d.is::<SnowflakeDialect>()).verified_stmt(sql) {
7902
Statement::CreateDatabase {
7903
db_name,
7904
if_not_exists,
@@ -7917,7 +7917,7 @@ fn parse_create_database() {
7917
7918
fn parse_create_database_ine() {
7919
let sql = "CREATE DATABASE IF NOT EXISTS mydb";
7920
7921
7922
7923
0 commit comments