mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
110 lines
3.3 KiB
C++
110 lines
3.3 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <unordered_map>
|
|
#include <set>
|
|
#include <boost/noncopyable.hpp>
|
|
#include <Core/Block.h>
|
|
#include <Storages/SelectQueryInfo.h>
|
|
|
|
|
|
namespace Poco { class Logger; }
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTSelectQuery;
|
|
class ASTFunction;
|
|
class MergeTreeData;
|
|
|
|
/** Identifies WHERE expressions that can be placed in PREWHERE by calculating respective
|
|
* sizes of columns used in particular expression and identifying "good" conditions of
|
|
* form "column_name = constant", where "constant" is outside some `threshold` specified in advance.
|
|
*
|
|
* If there are "good" conditions present in WHERE, the one with minimal summary column size is transferred to PREWHERE.
|
|
* Otherwise any condition with minimal summary column size can be transferred to PREWHERE.
|
|
*/
|
|
class MergeTreeWhereOptimizer : private boost::noncopyable
|
|
{
|
|
public:
|
|
MergeTreeWhereOptimizer(
|
|
SelectQueryInfo & query_info,
|
|
const Context & context,
|
|
const MergeTreeData & data,
|
|
const Names & queried_columns_,
|
|
Poco::Logger * log_);
|
|
|
|
private:
|
|
void optimize(ASTSelectQuery & select) const;
|
|
|
|
struct Condition
|
|
{
|
|
ASTPtr node;
|
|
UInt64 columns_size = 0;
|
|
NameSet identifiers;
|
|
bool viable = false;
|
|
bool good = false;
|
|
|
|
auto tuple() const
|
|
{
|
|
return std::make_tuple(!viable, !good, columns_size);
|
|
}
|
|
|
|
/// Is condition a better candidate for moving to PREWHERE?
|
|
bool operator< (const Condition & rhs) const
|
|
{
|
|
return tuple() < rhs.tuple();
|
|
}
|
|
};
|
|
|
|
using Conditions = std::list<Condition>;
|
|
|
|
void analyzeImpl(Conditions & res, const ASTPtr & node) const;
|
|
|
|
/// Transform conjunctions chain in WHERE expression to Conditions list.
|
|
Conditions analyze(const ASTPtr & expression) const;
|
|
|
|
/// Transform Conditions list to WHERE or PREWHERE expression.
|
|
static ASTPtr reconstruct(const Conditions & conditions);
|
|
|
|
void calculateColumnSizes(const MergeTreeData & data, const Names & column_names);
|
|
|
|
void optimizeConjunction(ASTSelectQuery & select, ASTFunction * const fun) const;
|
|
|
|
void optimizeArbitrary(ASTSelectQuery & select) const;
|
|
|
|
UInt64 getIdentifiersColumnSize(const NameSet & identifiers) const;
|
|
|
|
bool hasPrimaryKeyAtoms(const ASTPtr & ast) const;
|
|
|
|
bool isPrimaryKeyAtom(const ASTPtr & ast) const;
|
|
|
|
bool isConstant(const ASTPtr & expr) const;
|
|
|
|
bool isSubsetOfTableColumns(const NameSet & identifiers) const;
|
|
|
|
/** ARRAY JOIN'ed columns as well as arrayJoin() result cannot be used in PREWHERE, therefore expressions
|
|
* containing said columns should not be moved to PREWHERE at all.
|
|
* We assume all AS aliases have been expanded prior to using this class
|
|
*
|
|
* Also, disallow moving expressions with GLOBAL [NOT] IN.
|
|
*/
|
|
bool cannotBeMoved(const ASTPtr & ptr) const;
|
|
|
|
void determineArrayJoinedNames(ASTSelectQuery & select);
|
|
|
|
using StringSet = std::unordered_set<std::string>;
|
|
|
|
String first_primary_key_column;
|
|
const StringSet table_columns;
|
|
const Names queried_columns;
|
|
const Block block_with_constants;
|
|
Poco::Logger * log;
|
|
std::unordered_map<std::string, UInt64> column_sizes;
|
|
UInt64 total_size_of_queried_columns = 0;
|
|
NameSet array_joined_names;
|
|
};
|
|
|
|
|
|
}
|