mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
5250650f65
* Revert "Simplification [#CLICKHOUSE-2]."
This reverts commit 98ad6a5db3
.
* Fix error: comparison of unsigned expression < 0 is always false
* Fix float division by zero
* Fix float division by zero
* Disable PointInPolygon function if compiling with old clang
* Fix warning:
dbms/src/Functions/FunctionsCoding.h:336:21: error: comparison of constant -1 with expression of type 'const char' is always true [-Werror,-Wtautological-constant-out-of-range-compare]
if (num != -1)
* Fix
139 lines
4.1 KiB
C++
139 lines
4.1 KiB
C++
#include <DataStreams/ColumnGathererStream.h>
|
|
#include <common/logger_useful.h>
|
|
#include <Common/typeid_cast.h>
|
|
#include <iomanip>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
extern const int INCOMPATIBLE_COLUMNS;
|
|
extern const int INCORRECT_NUMBER_OF_COLUMNS;
|
|
extern const int NOT_FOUND_COLUMN_IN_BLOCK;
|
|
extern const int EMPTY_DATA_PASSED;
|
|
extern const int RECEIVED_EMPTY_DATA;
|
|
}
|
|
|
|
ColumnGathererStream::ColumnGathererStream(
|
|
const String & column_name_, const BlockInputStreams & source_streams, ReadBuffer & row_sources_buf_,
|
|
size_t block_preferred_size_)
|
|
: name(column_name_), row_sources_buf(row_sources_buf_)
|
|
, block_preferred_size(block_preferred_size_), log(&Logger::get("ColumnGathererStream"))
|
|
{
|
|
if (source_streams.empty())
|
|
throw Exception("There are no streams to gather", ErrorCodes::EMPTY_DATA_PASSED);
|
|
|
|
children.assign(source_streams.begin(), source_streams.end());
|
|
}
|
|
|
|
|
|
String ColumnGathererStream::getID() const
|
|
{
|
|
std::stringstream res;
|
|
|
|
res << getName() << "(";
|
|
for (size_t i = 0; i < children.size(); i++)
|
|
res << (i == 0 ? "" : ", " ) << children[i]->getID();
|
|
res << ")";
|
|
|
|
return res.str();
|
|
}
|
|
|
|
|
|
void ColumnGathererStream::init()
|
|
{
|
|
sources.reserve(children.size());
|
|
for (size_t i = 0; i < children.size(); i++)
|
|
{
|
|
sources.emplace_back(children[i]->read(), name);
|
|
|
|
Block & block = sources.back().block;
|
|
|
|
/// Sometimes MergeTreeReader injects additional column with partitioning key
|
|
if (block.columns() > 2)
|
|
throw Exception(
|
|
"Block should have 1 or 2 columns, but contains " + toString(block.columns()),
|
|
ErrorCodes::INCORRECT_NUMBER_OF_COLUMNS);
|
|
if (!block.has(name))
|
|
throw Exception(
|
|
"Not found column `" + name + "' in block.",
|
|
ErrorCodes::NOT_FOUND_COLUMN_IN_BLOCK);
|
|
|
|
if (i == 0)
|
|
{
|
|
column.name = name;
|
|
column.type = block.getByName(name).type->clone();
|
|
column.column = column.type->createColumn();
|
|
}
|
|
|
|
if (block.getByName(name).column->getName() != column.column->getName())
|
|
throw Exception("Column types don't match", ErrorCodes::INCOMPATIBLE_COLUMNS);
|
|
}
|
|
}
|
|
|
|
|
|
Block ColumnGathererStream::readImpl()
|
|
{
|
|
/// Special case: single source and there are no skipped rows
|
|
if (children.size() == 1 && row_sources_buf.eof())
|
|
return children[0]->read();
|
|
|
|
/// Initialize first source blocks
|
|
if (sources.empty())
|
|
init();
|
|
|
|
if (!source_to_fully_copy && row_sources_buf.eof())
|
|
return Block();
|
|
|
|
output_block = Block{column.cloneEmpty()};
|
|
output_block.getByPosition(0).column->gather(*this);
|
|
return std::move(output_block);
|
|
}
|
|
|
|
|
|
void ColumnGathererStream::fetchNewBlock(Source & source, size_t source_num)
|
|
{
|
|
try
|
|
{
|
|
source.block = children[source_num]->read();
|
|
source.update(name);
|
|
}
|
|
catch (Exception & e)
|
|
{
|
|
e.addMessage("Cannot fetch required block. Stream " + children[source_num]->getID() + ", part " + toString(source_num));
|
|
throw;
|
|
}
|
|
|
|
if (0 == source.size)
|
|
{
|
|
throw Exception("Fetched block is empty. Stream " + children[source_num]->getID() + ", part " + toString(source_num),
|
|
ErrorCodes::RECEIVED_EMPTY_DATA);
|
|
}
|
|
}
|
|
|
|
|
|
void ColumnGathererStream::readSuffixImpl()
|
|
{
|
|
const BlockStreamProfileInfo & profile_info = getProfileInfo();
|
|
|
|
/// Don't print info for small parts (< 10M rows)
|
|
if (profile_info.rows < 10000000)
|
|
return;
|
|
|
|
double seconds = profile_info.total_stopwatch.elapsedSeconds();
|
|
std::stringstream speed;
|
|
if (seconds)
|
|
speed << ", " << profile_info.rows / seconds << " rows/sec., "
|
|
<< profile_info.bytes / 1048576.0 / seconds << " MiB/sec.";
|
|
LOG_TRACE(log, std::fixed << std::setprecision(2)
|
|
<< "Gathered column " << name
|
|
<< " (" << static_cast<double>(profile_info.bytes) / profile_info.rows << " bytes/elem.)"
|
|
<< " in " << seconds << " sec."
|
|
<< speed.str());
|
|
}
|
|
|
|
}
|