Skip to content

Commit

Permalink
[cli] add --sqlite param (apache#956)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddol authored Aug 25, 2023
1 parent 9c2e8bc commit 4a2fa66
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions examples/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ $ cargo run --feature json_example --example cli FILENAME.sql [--dialectname]
"--redshift" => Box::new(RedshiftSqlDialect {}),
"--clickhouse" => Box::new(ClickHouseDialect {}),
"--duckdb" => Box::new(DuckDbDialect {}),
"--sqlite" => Box::new(SQLiteDialect {}),
"--generic" | "" => Box::new(GenericDialect {}),
s => panic!("Unexpected parameter: {s}"),
};
Expand Down

0 comments on commit 4a2fa66

Please sign in to comment.