From be2ec93a3f3a649d62e214e83f8d17053facd356 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Tue, 20 Feb 2024 16:35:30 +0100 Subject: [PATCH] Remove commented code in ExpressionActions::execute() This information will be added to the exception anyway. Signed-off-by: Azat Khuzhin --- src/Interpreters/ExpressionActions.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Interpreters/ExpressionActions.cpp b/src/Interpreters/ExpressionActions.cpp index 1bd1e2c318f..f86febb481d 100644 --- a/src/Interpreters/ExpressionActions.cpp +++ b/src/Interpreters/ExpressionActions.cpp @@ -736,10 +736,6 @@ void ExpressionActions::execute(Block & block, size_t & num_rows, bool dry_run) { executeAction(action, execution_context, dry_run); checkLimits(execution_context.columns); - - //std::cerr << "Action: " << action.toString() << std::endl; - //for (const auto & col : execution_context.columns) - // std::cerr << col.dumpStructure() << std::endl; } catch (Exception & e) {