ClickHouse/src/Storages/MergeTree/MergeTreeIndexHypothesis.cpp

107 lines
3.1 KiB
C++
Raw Normal View History

2021-04-26 09:40:54 +00:00
#include <Storages/MergeTree/MergeTreeIndexHypothesis.h>
#include <Interpreters/ExpressionActions.h>
#include <Interpreters/ExpressionAnalyzer.h>
#include <Interpreters/TreeRewriter.h>
#include <Parsers/ASTIdentifier.h>
#include <Parsers/ASTFunction.h>
#include <Parsers/ASTLiteral.h>
namespace DB
{
namespace ErrorCodes
{
extern const int LOGICAL_ERROR;
extern const int INCORRECT_QUERY;
}
MergeTreeIndexGranuleHypothesis::MergeTreeIndexGranuleHypothesis(const String & index_name_)
: index_name(index_name_), is_empty(true), met(false)
{
}
MergeTreeIndexGranuleHypothesis::MergeTreeIndexGranuleHypothesis(const String & index_name_, const bool met_)
: index_name(index_name_), is_empty(false), met(met_)
{
}
void MergeTreeIndexGranuleHypothesis::serializeBinary(WriteBuffer & ostr) const
{
const auto & size_type = DataTypePtr(std::make_shared<DataTypeUInt8>());
2021-04-27 10:57:59 +00:00
size_type->getDefaultSerialization()->serializeBinary(static_cast<UInt8>(met), ostr);
2021-04-26 09:40:54 +00:00
}
void MergeTreeIndexGranuleHypothesis::deserializeBinary(ReadBuffer & istr)
{
Field field_met;
const auto & size_type = DataTypePtr(std::make_shared<DataTypeUInt8>());
2021-04-27 10:57:59 +00:00
size_type->getDefaultSerialization()->deserializeBinary(field_met, istr);
2021-04-26 09:40:54 +00:00
met = field_met.get<UInt8>();
is_empty = false;
}
MergeTreeIndexAggregatorHypothesis::MergeTreeIndexAggregatorHypothesis(const String & index_name_, const String & column_name_)
: index_name(index_name_), column_name(column_name_)
{
}
MergeTreeIndexGranulePtr MergeTreeIndexAggregatorHypothesis::getGranuleAndReset()
{
const auto granule = std::make_shared<MergeTreeIndexGranuleHypothesis>(index_name, met);
met = true;
is_empty = true;
return granule;
}
void MergeTreeIndexAggregatorHypothesis::update(const Block & block, size_t * pos, size_t limit)
{
size_t rows_read = std::min(limit, block.rows() - *pos);
if (rows_read == 0)
return;
const auto & column = block.getByName(column_name).column->cut(*pos, rows_read);
if (!column->hasEqualValues() || column->get64(0) == 0)
met = false;
is_empty = false;
*pos += rows_read;
}
MergeTreeIndexGranulePtr MergeTreeIndexHypothesis::createIndexGranule() const
{
return std::make_shared<MergeTreeIndexGranuleHypothesis>(index.name);
}
MergeTreeIndexAggregatorPtr MergeTreeIndexHypothesis::createIndexAggregator() const
{
return std::make_shared<MergeTreeIndexAggregatorHypothesis>(index.name, index.sample_block.getNames().front());
}
MergeTreeIndexConditionPtr MergeTreeIndexHypothesis::createIndexCondition(
2021-05-02 19:16:40 +00:00
const SelectQueryInfo &, ContextPtr) const
2021-04-26 09:40:54 +00:00
{
2021-05-02 19:16:40 +00:00
return nullptr;
2021-04-26 09:40:54 +00:00
}
bool MergeTreeIndexHypothesis::mayBenefitFromIndexForIn(const ASTPtr &) const
{
return false;
}
MergeTreeIndexPtr hypothesisIndexCreator(const IndexDescription & index)
{
return std::make_shared<MergeTreeIndexHypothesis>(index);
}
2021-05-02 19:16:40 +00:00
void hypothesisIndexValidator(const IndexDescription & index, bool /*attach*/)
2021-04-26 09:40:54 +00:00
{
2021-05-02 19:16:40 +00:00
if (index.expression_list_ast->children.size() != 1)
throw Exception("Hypothesis index needs exactly one expression", ErrorCodes::LOGICAL_ERROR);
2021-04-26 09:40:54 +00:00
}
}