From 4a1019225f7e362de50fdeb7ae3ac237d070af6f Mon Sep 17 00:00:00 2001 From: siyuan0322 Date: Mon, 5 Jun 2023 19:41:37 +0800 Subject: [PATCH] disable debug-assert in groot --- interactive_engine/executor/assembly/groot/Cargo.toml | 7 ++++++- interactive_engine/executor/rust-toolchain.toml | 5 ----- 2 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 interactive_engine/executor/rust-toolchain.toml diff --git a/interactive_engine/executor/assembly/groot/Cargo.toml b/interactive_engine/executor/assembly/groot/Cargo.toml index a64706f17963..cb130fe5359b 100644 --- a/interactive_engine/executor/assembly/groot/Cargo.toml +++ b/interactive_engine/executor/assembly/groot/Cargo.toml @@ -19,4 +19,9 @@ log4rs = "1.2" tokio = { version = "1.24", features = ["macros", "sync"] } [features] -column_filter_push_down = ["runtime_integration/column_filter_push_down"] \ No newline at end of file +column_filter_push_down = ["runtime_integration/column_filter_push_down"] + +[profile.dev] + +# TODO(siyuan): re-enable debug assertions by addressing the reports for misaligned pointer dereferences https://github.com/rust-lang/rust/pull/98112/ +debug-assertions = false diff --git a/interactive_engine/executor/rust-toolchain.toml b/interactive_engine/executor/rust-toolchain.toml deleted file mode 100644 index b2d4a1a07928..000000000000 --- a/interactive_engine/executor/rust-toolchain.toml +++ /dev/null @@ -1,5 +0,0 @@ -[toolchain] -# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy. -# https://rust-lang.github.io/rustup/concepts/profiles.html -profile = "default" -channel = "1.69.0"