ClickHouse/src/Interpreters/SelectQueryOptions.h

120 lines
3.3 KiB
C++
Raw Normal View History

#pragma once
#include <Core/QueryProcessingStage.h>
namespace DB
{
/**
* to_stage
* - the stage to which the query is to be executed. By default - till to the end.
* You can perform till the intermediate aggregation state, which are combined from different servers for distributed query processing.
*
* subquery_depth
* - to control the limit on the depth of nesting of subqueries. For subqueries, a value that is incremented by one is passed;
* for INSERT SELECT, a value 1 is passed instead of 0.
*
* only_analyze
* - the object was created only for query analysis.
2019-03-15 15:57:18 +00:00
*
* is_subquery
* - there could be some specific for subqueries. Ex. there's no need to pass duplicated columns in results, cause of indirect results.
2020-12-18 06:54:38 +00:00
*
* is_internal
* - the object was created only for internal queries.
*/
2019-03-18 12:05:51 +00:00
struct SelectQueryOptions
{
2019-03-18 12:05:51 +00:00
QueryProcessingStage::Enum to_stage;
size_t subquery_depth;
bool only_analyze = false;
bool modify_inplace = false;
bool remove_duplicates = false;
bool ignore_quota = false;
bool ignore_limits = false;
2021-04-22 08:43:35 +00:00
/// This is a temporary flag to avoid adding aggregating step. Used for projections.
/// TODO: we need more stages for InterpreterSelectQuery
bool ignore_aggregation = false;
/// This flag is needed to analyze query ignoring table projections.
/// It is needed because we build another one InterpreterSelectQuery while analyzing projections.
/// It helps to avoid infinite recursion.
bool ignore_projections = false;
bool ignore_alias = false;
2020-12-18 06:54:38 +00:00
bool is_internal = false;
2021-02-08 16:25:24 +00:00
bool is_subquery = false; // non-subquery can also have subquery_depth > 0, e.g. insert select
2019-03-18 12:05:51 +00:00
2021-02-09 03:46:06 +00:00
SelectQueryOptions(QueryProcessingStage::Enum stage = QueryProcessingStage::Complete, size_t depth = 0, bool is_subquery_ = false)
: to_stage(stage), subquery_depth(depth), is_subquery(is_subquery_)
{
}
2019-03-18 12:05:51 +00:00
SelectQueryOptions copy() const { return *this; }
2019-03-18 12:05:51 +00:00
SelectQueryOptions subquery() const
{
2019-03-15 15:57:18 +00:00
SelectQueryOptions out = *this;
2019-03-18 12:05:51 +00:00
out.to_stage = QueryProcessingStage::Complete;
2019-03-15 15:57:18 +00:00
++out.subquery_depth;
2021-02-08 16:25:24 +00:00
out.is_subquery = true;
2019-03-15 15:57:18 +00:00
return out;
}
2020-03-18 00:57:00 +00:00
SelectQueryOptions & analyze(bool dry_run = true)
{
2020-03-18 00:57:00 +00:00
only_analyze = dry_run;
2019-03-18 12:05:51 +00:00
return *this;
}
2019-03-18 12:05:51 +00:00
SelectQueryOptions & modify(bool value = true)
{
2019-03-18 12:05:51 +00:00
modify_inplace = value;
return *this;
}
2019-03-18 12:05:51 +00:00
SelectQueryOptions & noModify() { return modify(false); }
2019-03-18 14:56:33 +00:00
SelectQueryOptions & removeDuplicates(bool value = true)
{
remove_duplicates = value;
return *this;
}
2019-03-18 12:05:51 +00:00
SelectQueryOptions & noSubquery()
{
2019-03-18 12:05:51 +00:00
subquery_depth = 0;
return *this;
}
SelectQueryOptions & ignoreLimits(bool value = true)
{
ignore_limits = value;
return *this;
}
2020-12-18 06:54:38 +00:00
SelectQueryOptions & ignoreProjections(bool value = true)
{
ignore_projections = value;
return *this;
}
2021-04-22 08:43:35 +00:00
SelectQueryOptions & ignoreAggregation(bool value = true)
{
ignore_aggregation = value;
return *this;
}
SelectQueryOptions & ignoreAlias(bool value = true)
{
ignore_alias = value;
return *this;
}
2020-12-18 06:54:38 +00:00
SelectQueryOptions & setInternal(bool value = false)
{
is_internal = value;
return *this;
}
};
}