fix: move to rust API for local SQL
Summarize the changes
- fix: move to rust API for local SQL
Picodata: picodata!1189 (closed)
Ensure that
-
New code is covered by unit and integration tests. -
Related issues would be automatically closed with gitlab's closing pattern ( Closes #1, #2
). -
Public modules are documented (check the rendered version withcargo doc --open
). -
(if PEST grammar is changed) EBNF grammar reflects these changes (check the result with railroad diagram generator.
Next steps
- Cherry-pick to: none
- Update sbroad submodule in picodata/picodata.
- (if EBNF grammar is changed) create a follow-up issue in picodata/docs.
Closes #494 (closed)
Edited by Denis Smirnov
Merge request reports
Activity
added Performance in-progress labels
assigned to @darthunix
added 10 commits
- a16c6b7e - fix: panic on wrong number of parameters
- 1ef2a264 - doc: add distinct for aggregate functions
- 389fbff0 - feat: infer not null constraint on primary key columns
- 67ae2d92 - fix: throw error on avg/sum/total on number column
- c6c3b541 - feat: rename proc execute to proc_sql_execute
- af62abf6 - feat: mock param and transaction settings
- c508313e - fix: support list param values in SET command
- 36502282 - feat: support dml on global tbls
- cbc40f8d - feat: improve tarantool caching for motions
- b409abd6 - fix: move to rust API for local SQL
Toggle commit list- Resolved by Denis Smirnov
As tarantool module's master is not updated yet to support required, here is a fix to build picodata on the current commit:
Click to expand
diff --git a/sbroad-benches/Cargo.toml b/sbroad-benches/Cargo.toml index 75479edf..0de28645 100644 --- a/sbroad-benches/Cargo.toml +++ b/sbroad-benches/Cargo.toml @@ -16,7 +16,8 @@ pest_derive = "2.0" bincode = "1.3" [dependencies.tarantool] -git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +# git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +path = "../../tarantool/tarantool" version = ">=4.0" features = ["picodata"] @@ -25,7 +26,8 @@ criterion = "0.3" rand = "0.8" [dev-dependencies.tarantool] -git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +# git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +path = "../../tarantool/tarantool" version = ">=4.0" features = ["picodata", "standalone_decimal"] diff --git a/sbroad-cartridge/Cargo.toml b/sbroad-cartridge/Cargo.toml index 5f39a1ff..b7ba76e3 100644 --- a/sbroad-cartridge/Cargo.toml +++ b/sbroad-cartridge/Cargo.toml @@ -28,7 +28,8 @@ anyhow = "1" smol_str = "0.2.1" [dependencies.tarantool] -git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +# git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +path = "../../tarantool/tarantool" version = ">=4.0" features = ["picodata"] diff --git a/sbroad-core/Cargo.toml b/sbroad-core/Cargo.toml index 1e784750..8e2eb423 100644 --- a/sbroad-core/Cargo.toml +++ b/sbroad-core/Cargo.toml @@ -32,7 +32,8 @@ smol_str = { version = "0.2", features = ["serde"] } time = { version = ">=0.3.0, <0.3.18", features = ["formatting"] } [dependencies.tarantool] -git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +# git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +path = "../../tarantool/tarantool" version = ">=4.0" features = ["picodata"] @@ -40,7 +41,8 @@ features = ["picodata"] pretty_assertions = "1.3" [dev-dependencies.tarantool] -git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +# git = "https://git.picodata.io/picodata/picodata/tarantool-module.git" +path = "../../tarantool/tarantool" version = ">=4.0" features = ["picodata", "standalone_decimal"]
TODO:
-
get rid of- #727 (moved)LuaValue
-
use murmur64 instead of murmur32 for table names (reduce collisions)- отдельная задача #726 (moved)
Edited by Denis Smirnov-
mentioned in merge request !447 (merged)
added 11 commits
-
a27df553...5b5bbcfc - 10 commits from branch
caching
- d4cc0cbe - feat: move to rust API for local SQL
-
a27df553...5b5bbcfc - 10 commits from branch
added 10 commits
-
d4cc0cbe...25f62e55 - 9 commits from branch
caching
- 5e853622 - feat: move to rust API for local SQL
-
d4cc0cbe...25f62e55 - 9 commits from branch
Please register or sign in to reply