Remove commented code in ExpressionActions::execute()

This information will be added to the exception anyway.

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
Azat Khuzhin 2024-02-20 16:35:30 +01:00
parent f83ddb1a70
commit be2ec93a3f

View File

@ -736,10 +736,6 @@ void ExpressionActions::execute(Block & block, size_t & num_rows, bool dry_run)
{ {
executeAction(action, execution_context, dry_run); executeAction(action, execution_context, dry_run);
checkLimits(execution_context.columns); 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) catch (Exception & e)
{ {