Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): upgrade sqlparser to 0.47.0 #10392

Merged
merged 41 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
7393c64
build(deps): upgrade sqlparser to 0.46.0
tisonkun May 5, 2024
d64ac06
function and cast fixups
jmhain May 6, 2024
c112222
catchup refactors
tisonkun May 8, 2024
f29af9d
try migrate json expr
tisonkun May 14, 2024
1ac63fa
Update for changes in sqlparser
alamb May 14, 2024
f973c0d
Merge remote-tracking branch 'apache/main' into upgrade-sqlparser
alamb May 14, 2024
d6da6fc
Update dependencies
alamb May 14, 2024
f553243
handle zero argument form
alamb May 14, 2024
f8eed01
fmt
alamb May 14, 2024
29fac1e
Merge branch 'main' into upgrade-sqlparser
tisonkun May 19, 2024
35d66e7
fixup more
tisonkun May 19, 2024
60ecc27
fixup more
tisonkun May 19, 2024
a150073
Merge branch 'main' into upgrade-sqlparser
tisonkun May 28, 2024
4fec8ee
try use jmhain's branch
tisonkun May 28, 2024
7e665e9
fix compile FunctionArgumentClause exhausted
tisonkun May 28, 2024
a5f8568
fix compile set multi vars
tisonkun May 28, 2024
545abae
fix compile new string values
tisonkun May 28, 2024
c8d5ea0
fix compile set multi vars
tisonkun May 28, 2024
598260f
fix compile Subscript
tisonkun May 28, 2024
e399416
cargo fmt
tisonkun May 28, 2024
a4aca5a
revert workaround on values
tisonkun May 28, 2024
042e7e8
Merge remote-tracking branch 'apache/main' into upgrade-sqlparser
alamb May 30, 2024
3cffded
Rework field access
alamb May 30, 2024
1bd355a
update lock
alamb May 30, 2024
98b539b
fix doc
alamb May 30, 2024
8efc69e
Merge remote-tracking branch 'apache/main' into upgrade-sqlparser
alamb May 30, 2024
53c72f5
try catchup new sqlparser version
tisonkun Jun 1, 2024
4d74ef6
fixup timezone expr
tisonkun Jun 1, 2024
c1163ad
fixup params
tisonkun Jun 1, 2024
e1d0c6b
lock
tisonkun Jun 1, 2024
685025a
Update to sqlparser 0.47.0
alamb Jun 1, 2024
ba24a7c
Merge remote-tracking branch 'apache/main' into upgrade-sqlparser
alamb Jun 1, 2024
b5743d5
Update rust stack size on windows
alamb Jun 1, 2024
d655ad6
Revert "Update rust stack size on windows"
alamb Jun 1, 2024
b8d84d5
Merge remote-tracking branch 'apache/main' into upgrade-sqlparser
alamb Jun 4, 2024
8446851
Add test + support for `$$` function definition
alamb Jun 4, 2024
72f61b0
Disable failing windows CI test
alamb Jun 4, 2024
089b571
fmt
alamb Jun 4, 2024
c3e475b
simplify test
alamb Jun 4, 2024
50a5a0f
fmt
alamb Jun 4, 2024
2290a8e
Merge remote-tracking branch 'apache/main' into upgrade-sqlparser
alamb Jun 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ rand = "0.8"
regex = "1.8"
rstest = "0.19.0"
serde_json = "1"
sqlparser = { version = "0.45.0", features = ["visitor"] }
sqlparser = { git = "https://github.com/jmhain/sqlparser-rs", branch = "subscript", features = ["visitor"] }
tempfile = "3"
thiserror = "1.0.44"
tokio = { version = "1.36", features = ["macros", "rt", "sync"] }
Expand Down
Loading