Skip to content

Commit 9328352

Browse files
committed
update sql parser
fixes #31 (cannot use CURRENT_TIMESTAMP in sqlite) fixes transaction handling on databases with a "BEGIN TRANSACTION" syntax (instead of START TRANSACTION) such as SQLite See https://github.com/sqlparser-rs/sqlparser-rs/blob/main/CHANGELOG.md#0370-2023-08-22
1 parent d82d83b commit 9328352

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlpage"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2021"
55
description = "A SQL-only web application framework. Takes .sql files and formats the query result using pre-made configurable professional-looking components."
66
keywords = ["web", "sql", "framework"]
@@ -33,7 +33,7 @@ anyhow = "1"
3333
serde = "1"
3434
serde_json = { version = "1.0.82", features = ["preserve_order"] }
3535
lambda-web = { version = "0.2.1", features = ["actix4"], optional = true }
36-
sqlparser = { version = "0.36.1", features = ["visitor"] }
36+
sqlparser = { version = "0.37.0", features = ["visitor"] }
3737
async-stream = "0.3"
3838
async-trait = "0.1.61"
3939
async-recursion = "1.0.0"

0 commit comments

Comments
 (0)