Skip to content

Commit 8b24838

Browse files
committed
Update dependencies
1 parent 9231064 commit 8b24838

File tree

4 files changed

+22
-20
lines changed

4 files changed

+22
-20
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## unreleased
44
- added support for the MONEY and SMALLMONEY types in MSSQL.
55
- include [math functions](https://sqlite.org/lang_mathfunc.html) in the builtin sqlite3 database.
6+
- update the SQL parser to [v0.57](https://github.com/apache/datafusion-sqlparser-rs/blob/main/changelog/0.57.0.md)
67

78
## v0.35.2
89
- Fix a bug with zero values being displayed with a non-zero height in stacked bar charts.

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ anyhow = "1"
4848
serde = "1"
4949
serde_json = { version = "1.0.82", features = ["preserve_order", "raw_value"] }
5050
lambda-web = { version = "0.2.1", features = ["actix4"], optional = true }
51-
sqlparser = { version = "0.56.0", default-features = false, features = [
51+
sqlparser = { version = "0.57.0", default-features = false, features = [
5252
"std",
5353
"visitor",
5454
] }

src/webserver/database/sql.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1068,6 +1068,7 @@ fn expr_to_statement(expr: Expr) -> Statement {
10681068
for_clause: None,
10691069
settings: None,
10701070
format_clause: None,
1071+
pipe_operators: Vec::new(),
10711072
}))
10721073
}
10731074

0 commit comments

Comments
 (0)