mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
remove debug log
This commit is contained in:
parent
26b5a74b0c
commit
0ca2e18e45
@ -108,7 +108,6 @@ void ArrayJoinAction::execute(Block & block)
|
||||
for (const auto & name : columns)
|
||||
{
|
||||
auto & src_col = block.getByName(name);
|
||||
std::cout << src_col.dumpStructure() << std::endl;
|
||||
|
||||
ColumnWithTypeAndName array_col;
|
||||
array_col.name = name;
|
||||
@ -122,9 +121,6 @@ void ArrayJoinAction::execute(Block & block)
|
||||
column_of_max_length.column = function_greatest->build(tmp_block2)->execute(tmp_block2, uint64, rows);
|
||||
}
|
||||
|
||||
for (size_t i=0; i < column_of_max_length.column->size(); ++i)
|
||||
std::cout << "row:" << i << ",max_length:" << column_of_max_length.column->get64(i) << std::endl;
|
||||
|
||||
for (const auto & name : columns)
|
||||
{
|
||||
auto & src_col = block.getByName(name);
|
||||
|
@ -25,9 +25,7 @@ ArrayJoinTransform::ArrayJoinTransform(
|
||||
void ArrayJoinTransform::transform(Chunk & chunk)
|
||||
{
|
||||
auto block = getInputPort().getHeader().cloneWithColumns(chunk.detachColumns());
|
||||
std::cout << "before:" << block.dumpStructure() << std::endl;
|
||||
array_join->execute(block);
|
||||
std::cout << "after:" << block.dumpStructure() << std::endl;
|
||||
chunk.setColumns(block.getColumns(), block.rows());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user