diff --git a/src/Interpreters/ExpressionJIT.cpp b/src/Interpreters/ExpressionJIT.cpp index ca5c859f192..cfdbfc55476 100644 --- a/src/Interpreters/ExpressionJIT.cpp +++ b/src/Interpreters/ExpressionJIT.cpp @@ -723,23 +723,9 @@ void ActionsDAG::compileFunctions(size_t min_count_to_compile_expression) if (should_compile) { - std::cerr << "ActionsDAG::compileFunctions" << std::endl; - std::cerr << dumpDAG() << std::endl; - NodeRawConstPtrs new_children; - - std::cerr << "Compiled node " << frame.node->result_name << std::endl; - std::cerr << "Children before " << std::endl; - for (size_t i = 0; i < frame.node->children.size(); ++i) - std::cerr << "I " << i << " name " << frame.node->children[i]->result_name << std::endl; - auto dag = getCompilableDAG(frame.node, new_children, used_in_result); - std::cerr << "Children after " << frame.node->result_name << std::endl; - for (size_t i = 0; i < new_children.size(); ++i) - std::cerr << "I " << i << " name " << new_children[i]->result_name << std::endl; - std::cerr << "Dump dag " << dag.dump() << std::endl; - bool all_constants = true; for (const auto & compiled_node : dag)