We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5296bb commit 78191c1Copy full SHA for 78191c1
examples/cli.rs
@@ -47,6 +47,7 @@ $ cargo run --feature json_example --example cli FILENAME.sql [--dialectname]
47
"--redshift" => Box::new(RedshiftSqlDialect {}),
48
"--clickhouse" => Box::new(ClickHouseDialect {}),
49
"--duckdb" => Box::new(DuckDbDialect {}),
50
+ "--sqlite" => Box::new(SQLiteDialect {}),
51
"--generic" | "" => Box::new(GenericDialect {}),
52
s => panic!("Unexpected parameter: {s}"),
53
};
0 commit comments