Skip to content

Commit ad48c4a

Browse files
committed
Add small SQL parser improvements
1 parent 298923e commit ad48c4a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
- Enable submenu autoclosing (on click) in the shell. This is not ideal, but this prevents a bug introduced in v0.36.0 where the page would scroll back to the top when clicking anywhere on the page after navigating from a submenu. The next version will fix this properly. See https://github.com/sqlpage/SQLPage/issues/1011
77
- Adopt the new nice visual errors introduced in v0.37.1 for "403 Forbidden" and "429 Too Many Requests" errors.
88
- Fix a bug in oidc login flows. When two tabs in the same browser initiated a login at the same time, an infinite redirect loop could be triggered. This mainly occured when restoring open tabs after a period of inactivity, often in mobile browsers.
9+
- Multiple small sql parser improvements.
10+
- Adds support for MERGE queries inside CTEs, and MERGE queries with a RETURNING clause.
11+
- https://github.com/apache/datafusion-sqlparser-rs/blob/main/changelog/0.59.0.md
912

1013
## v0.37.0
1114
- We now cryptographically sign the Windows app during releases, which proves the file hasn’t been tampered with. Once the production certificate is active, Windows will show a "verified publisher" and should stop showing screens saying "This app might harm your device", "Windows protected your PC" or "Are you sure you want to run this application ?".

Cargo.lock

Lines changed: 2 additions & 2 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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ anyhow = "1"
4949
serde = "1"
5050
serde_json = { version = "1.0.82", features = ["preserve_order", "raw_value"] }
5151
lambda-web = { version = "0.2.1", features = ["actix4"], optional = true }
52-
sqlparser = { version = "0.58.0", default-features = false, features = [
53-
"std",
54-
"visitor",
55-
] }
52+
sqlparser = { version = "0.59.0", default-features = false, features = ["std", "visitor",] }
5653
async-stream = "0.3"
5754
async-trait = "0.1.61"
5855
async-recursion = "1.0.0"

0 commit comments

Comments
 (0)