ClickHouse/dbms/src/Interpreters/InterpreterSelectWithUnionQuery.h

60 lines
1.4 KiB
C++
Raw Normal View History

2018-02-25 00:50:53 +00:00
#pragma once
#include <Core/QueryProcessingStage.h>
#include <Interpreters/Context.h>
#include <Interpreters/IInterpreter.h>
#include <Interpreters/SelectQueryOptions.h>
2018-02-25 00:50:53 +00:00
2019-03-26 18:28:37 +00:00
#include <Processors/QueryPipeline.h>
2018-02-25 00:50:53 +00:00
namespace DB
{
class InterpreterSelectQuery;
/** Interprets one or multiple SELECT queries inside UNION ALL chain.
*/
class InterpreterSelectWithUnionQuery : public IInterpreter
{
public:
InterpreterSelectWithUnionQuery(
const ASTPtr & query_ptr_,
const Context & context_,
const SelectQueryOptions &,
const Names & required_result_column_names = {});
2018-02-25 00:50:53 +00:00
~InterpreterSelectWithUnionQuery() override;
2018-02-25 00:50:53 +00:00
BlockIO execute() override;
/// Execute the query without union of streams.
BlockInputStreams executeWithMultipleStreams();
2019-03-26 18:28:37 +00:00
QueryPipeline executeWithProcessors() override;
bool canExecuteWithProcessors() const override { return true; }
2018-02-25 00:50:53 +00:00
Block getSampleBlock();
static Block getSampleBlock(
const ASTPtr & query_ptr_,
const Context & context_);
2018-02-25 06:34:20 +00:00
void ignoreWithTotals();
ASTPtr getQuery() const { return query_ptr; }
2018-02-25 00:50:53 +00:00
private:
2019-03-18 12:05:51 +00:00
const SelectQueryOptions options;
2018-02-25 00:50:53 +00:00
ASTPtr query_ptr;
Context context;
std::vector<std::unique_ptr<InterpreterSelectQuery>> nested_interpreters;
2018-02-26 06:12:59 +00:00
Block result_header;
2019-04-09 13:07:07 +00:00
static Block getCommonHeaderForUnion(const Blocks & headers);
2018-02-25 00:50:53 +00:00
};
}