Adds clickhouse to example (#849)

This commit is contained in:
Brian Anglin 2023-04-12 15:04:46 -04:00 committed by GitHub
parent 00719e3cf3
commit 6b2b3f1f6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,7 @@ $ cargo run --feature json_example --example cli FILENAME.sql [--dialectname]
"--snowflake" => Box::new(SnowflakeDialect {}),
"--hive" => Box::new(HiveDialect {}),
"--redshift" => Box::new(RedshiftSqlDialect {}),
"--clickhouse" => Box::new(ClickHouseDialect {}),
"--generic" | "" => Box::new(GenericDialect {}),
s => panic!("Unexpected parameter: {s}"),
};