Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
with:
submodules: false

- name: Init starrocks submodule
- name: Init starrocks submodules
working-directory: ${{ github.workspace }}
run: git submodule update --init --depth=1 experimental/starrocks/starrocks
run: git submodule update --init --depth=1 experimental/starrocks/starrocks experimental/starrocks/brpc

- uses: prefix-dev/setup-pixi@5185adfbffb4bd703da3010310260805d89ebb11 # v0.9.6
with:
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@
[submodule "starrocks/starrocks"]
path = experimental/starrocks/starrocks
url = https://github.com/starrocks/starrocks
[submodule "starrocks/brpc"]
path = experimental/starrocks/brpc
url = https://github.com/apache/brpc
1 change: 1 addition & 0 deletions experimental/starrocks/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
target/
.pixi/
54 changes: 54 additions & 0 deletions experimental/starrocks/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 23 additions & 1 deletion experimental/starrocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,49 @@ resolver = "2"

[workspace.dependencies]
anyhow = "1"
backon = { version = "1", default-features = false, features = ["tokio-sleep"] }
clap = { version = "4", features = ["derive", "env"] }
mysql_async = { version = "0.36", default-features = false, features = ["minimal-rust"] }
# Keep this stack aligned so `substrait-explain` can format the same protobuf
# types emitted by `substrait`, and so generated messages share one `prost`
# runtime across the translator crate.
prost = "0.14"
prost-build = "0.14"
heck = "0.5"
prettyplease = "0.2"
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "parsing"] }
substrait = "0.62.2"
substrait-explain = "0.3.2"
thiserror = "2"
thrift = "0.17"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "time"] }
tokio = { version = "1", features = ["io-util", "macros", "net", "rt-multi-thread", "signal", "time"] }
tokio-util = { version = "0.7", features = ["rt"] }
tower = { version = "0.5", default-features = false, features = ["util"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }

[dependencies]
anyhow.workspace = true
backon.workspace = true
clap.workspace = true
mysql_async.workspace = true
prost.workspace = true
starrocks-plan-translator = { path = "crates/starrocks-plan-translator" }
starrocks-thrift = { path = "crates/starrocks-thrift" }
thiserror.workspace = true
thrift.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tower.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true

[build-dependencies]
heck.workspace = true
prettyplease.workspace = true
proc-macro2.workspace = true
prost-build.workspace = true
quote.workspace = true
syn.workspace = true
1 change: 1 addition & 0 deletions experimental/starrocks/brpc
Submodule brpc added at 7daed0
Loading
Loading