Skip to content
Closed
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
39 changes: 31 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ raft-log = { version = "0.2.11" }
rand = { version = "0.8.5", features = ["small_rng", "serde1"] }
rand_distr = "0.4.3"
rayon = "1.9.0"
recursive = "0.1.1"
redis = { version = "0.27.5", features = ["tokio-comp", "connection-manager"] }
regex = "1.8.1"
replace_with = "0.1.7"
Expand Down Expand Up @@ -411,6 +410,7 @@ socket2 = "0.5.3"
span-map = { version = "0.2.0" }
sqlx = { version = "0.8", features = ["mysql", "runtime-tokio"] }
stacker = "0.1"
stacksafe = "1"
state = "0.6.0"
state-machine-api = { version = "0.3.4" }
stream-more = "0.1.3"
Expand Down Expand Up @@ -575,7 +575,7 @@ jsonb = { git = "https://github.com/databendlabs/jsonb", rev = "1868abf" }
map-api = { git = "https://github.com/databendlabs/map-api", tag = "v0.4.2" }
openraft = { git = "https://github.com/databendlabs/openraft", tag = "v0.10.0-alpha.13" }
orc-rust = { git = "https://github.com/datafuse-extras/orc-rust", rev = "fc812ad7010" }
recursive = { git = "https://github.com/datafuse-extras/recursive.git", rev = "16e433a" }

sled = { git = "https://github.com/datafuse-extras/sled", tag = "v0.34.7-datafuse.1" }
state-machine-api = { git = "https://github.com/databendlabs/state-machine-api.git", tag = "v0.3.4" }
sub-cache = { git = "https://github.com/databendlabs/sub-cache", tag = "v0.2.1" }
Expand Down
13 changes: 3 additions & 10 deletions src/binaries/query/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ use databend_query::servers::ShutdownHandle;
use databend_query::servers::admin::AdminService;
use databend_query::servers::flight::FlightService;
use databend_query::servers::metrics::MetricService;
use databend_query::task::TaskService;
use databend_query::servers::task::TaskService;
use log::info;

pub mod stack_management;

use super::cmd::Cmd;
use super::cmd::Commands;

Expand All @@ -72,15 +74,6 @@ pub async fn init_services(conf: &InnerConfig, ee_mode: bool) -> Result<(), Main
let binary_version = DATABEND_COMMIT_VERSION.clone();
set_panic_hook(binary_version);
set_alloc_error_hook();

#[cfg(target_arch = "x86_64")]
{
if !std::is_x86_feature_detected!("sse4.2") {
println!(
"Current pre-built binary is typically compiled for x86_64 and leverage SSE 4.2 instruction set, you can build your own binary from source"
);
return Ok(());
}
}

if conf.meta.is_embedded_meta().with_context(make_error)? {
Expand Down
2 changes: 1 addition & 1 deletion src/query/ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ ordered-float = { workspace = true }
percent-encoding = { workspace = true }
pratt = { workspace = true }
pretty_assertions = { workspace = true }
recursive = { workspace = true }
rspack-codespan-reporting = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
stacksafe = { workspace = true }
strsim = { workspace = true }
strum = { workspace = true }
strum_macros = { workspace = true }
Expand Down
Loading
Loading