diff --git a/src/Interpreters/ExpressionJIT.cpp b/src/Interpreters/ExpressionJIT.cpp index 825dce3e400..c9105e36f5c 100644 --- a/src/Interpreters/ExpressionJIT.cpp +++ b/src/Interpreters/ExpressionJIT.cpp @@ -698,9 +698,6 @@ void ActionsDAG::compileFunctions(size_t min_count_to_compile_expression) if (should_compile) { - for (const auto * child_node : frame.node->children) - std::cerr << child_node->result_name << std::endl; - NodeRawConstPtrs new_children; auto dag = getCompilableDAG(frame.node, new_children, used_in_result); diff --git a/src/Interpreters/JIT/CHJIT.cpp b/src/Interpreters/JIT/CHJIT.cpp index 245e3baf198..31183ceb934 100644 --- a/src/Interpreters/JIT/CHJIT.cpp +++ b/src/Interpreters/JIT/CHJIT.cpp @@ -23,8 +23,6 @@ #include -#include - namespace DB {