2017-07-15 04:06:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-01-18 16:30:35 +00:00
|
|
|
#include <Interpreters/PreparedSets.h>
|
2020-06-15 12:36:10 +00:00
|
|
|
#include <Interpreters/DatabaseAndTableWithAlias.h>
|
2019-07-18 14:41:11 +00:00
|
|
|
#include <Core/SortDescription.h>
|
2020-02-14 07:12:04 +00:00
|
|
|
#include <Core/Names.h>
|
2017-07-15 04:06:51 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2018-04-06 13:58:06 +00:00
|
|
|
class ExpressionActions;
|
|
|
|
using ExpressionActionsPtr = std::shared_ptr<ExpressionActions>;
|
|
|
|
|
2018-04-11 14:31:54 +00:00
|
|
|
struct PrewhereInfo
|
|
|
|
{
|
2018-09-07 15:13:08 +00:00
|
|
|
/// Actions which are executed in order to alias columns are used for prewhere actions.
|
2018-09-03 17:24:46 +00:00
|
|
|
ExpressionActionsPtr alias_actions;
|
2018-04-11 14:31:54 +00:00
|
|
|
/// Actions which are executed on block in order to get filter column for prewhere step.
|
|
|
|
ExpressionActionsPtr prewhere_actions;
|
2018-10-04 08:58:19 +00:00
|
|
|
/// Actions which are executed after reading from storage in order to remove unused columns.
|
|
|
|
ExpressionActionsPtr remove_columns_actions;
|
2018-04-11 14:31:54 +00:00
|
|
|
String prewhere_column_name;
|
|
|
|
bool remove_prewhere_column = false;
|
2019-11-15 03:38:35 +00:00
|
|
|
bool need_filter = false;
|
2018-04-11 14:31:54 +00:00
|
|
|
|
|
|
|
PrewhereInfo() = default;
|
2018-04-12 09:45:24 +00:00
|
|
|
explicit PrewhereInfo(ExpressionActionsPtr prewhere_actions_, String prewhere_column_name_)
|
2018-09-03 17:24:46 +00:00
|
|
|
: prewhere_actions(std::move(prewhere_actions_)), prewhere_column_name(std::move(prewhere_column_name_)) {}
|
2018-04-11 14:31:54 +00:00
|
|
|
};
|
|
|
|
|
2019-03-29 20:31:06 +00:00
|
|
|
/// Helper struct to store all the information about the filter expression.
|
|
|
|
struct FilterInfo
|
|
|
|
{
|
|
|
|
ExpressionActionsPtr actions;
|
|
|
|
String column_name;
|
|
|
|
bool do_remove_column = false;
|
|
|
|
};
|
|
|
|
|
2020-05-13 13:49:10 +00:00
|
|
|
struct InputOrderInfo
|
2019-07-18 14:41:11 +00:00
|
|
|
{
|
2019-11-15 14:03:42 +00:00
|
|
|
SortDescription order_key_prefix_descr;
|
2019-07-25 10:45:01 +00:00
|
|
|
int direction;
|
2019-07-19 10:14:27 +00:00
|
|
|
|
2020-05-13 13:49:10 +00:00
|
|
|
InputOrderInfo(const SortDescription & order_key_prefix_descr_, int direction_)
|
2019-11-15 14:03:42 +00:00
|
|
|
: order_key_prefix_descr(order_key_prefix_descr_), direction(direction_) {}
|
2019-12-10 23:18:24 +00:00
|
|
|
|
2020-05-13 13:49:10 +00:00
|
|
|
bool operator ==(const InputOrderInfo & other) const
|
2019-12-10 23:18:24 +00:00
|
|
|
{
|
|
|
|
return order_key_prefix_descr == other.order_key_prefix_descr && direction == other.direction;
|
|
|
|
}
|
2019-12-11 01:34:39 +00:00
|
|
|
|
2020-05-13 13:49:10 +00:00
|
|
|
bool operator !=(const InputOrderInfo & other) const { return !(*this == other); }
|
2019-07-18 14:41:11 +00:00
|
|
|
};
|
|
|
|
|
2018-04-11 14:31:54 +00:00
|
|
|
using PrewhereInfoPtr = std::shared_ptr<PrewhereInfo>;
|
2019-03-29 20:31:06 +00:00
|
|
|
using FilterInfoPtr = std::shared_ptr<FilterInfo>;
|
2020-05-13 13:49:10 +00:00
|
|
|
using InputOrderInfoPtr = std::shared_ptr<const InputOrderInfo>;
|
2018-04-11 14:31:54 +00:00
|
|
|
|
2020-07-22 17:13:05 +00:00
|
|
|
struct TreeRewriterResult;
|
|
|
|
using TreeRewriterResultPtr = std::shared_ptr<const TreeRewriterResult>;
|
2017-07-15 04:06:51 +00:00
|
|
|
|
2019-12-10 23:18:24 +00:00
|
|
|
class ReadInOrderOptimizer;
|
2019-12-11 13:09:46 +00:00
|
|
|
using ReadInOrderOptimizerPtr = std::shared_ptr<const ReadInOrderOptimizer>;
|
2019-12-10 23:18:24 +00:00
|
|
|
|
2020-02-14 07:12:04 +00:00
|
|
|
|
2017-07-15 04:06:51 +00:00
|
|
|
/** Query along with some additional data,
|
|
|
|
* that can be used during query processing
|
|
|
|
* inside storage engines.
|
|
|
|
*/
|
|
|
|
struct SelectQueryInfo
|
|
|
|
{
|
|
|
|
ASTPtr query;
|
2020-06-15 12:36:10 +00:00
|
|
|
ASTPtr view_query; /// Optimized VIEW query
|
2017-07-15 04:06:51 +00:00
|
|
|
|
2020-07-22 17:13:05 +00:00
|
|
|
TreeRewriterResultPtr syntax_analyzer_result;
|
2018-11-08 15:43:14 +00:00
|
|
|
|
2018-04-11 14:31:54 +00:00
|
|
|
PrewhereInfoPtr prewhere_info;
|
2018-04-06 13:58:06 +00:00
|
|
|
|
2020-05-13 13:49:10 +00:00
|
|
|
ReadInOrderOptimizerPtr order_optimizer;
|
2019-12-11 13:09:46 +00:00
|
|
|
/// We can modify it while reading from storage
|
2020-05-13 13:49:10 +00:00
|
|
|
mutable InputOrderInfoPtr input_order_info;
|
2019-12-10 23:18:24 +00:00
|
|
|
|
2017-07-15 04:06:51 +00:00
|
|
|
/// Prepared sets are used for indices by storage engine.
|
|
|
|
/// Example: x IN (1, 2, 3)
|
|
|
|
PreparedSets sets;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|