ClickHouse/dbms/include/DB/Interpreters/ClusterProxy/Query.h

46 lines
1.1 KiB
C++
Raw Normal View History

2016-01-28 01:00:27 +00:00
#pragma once
#include <DB/Parsers/IAST.h>
#include <DB/Storages/IStorage.h>
namespace DB
{
2016-03-07 04:35:06 +00:00
struct Settings;
2016-01-28 01:00:27 +00:00
class Context;
class Cluster;
namespace ClusterProxy
{
class IQueryConstructor;
/// This class is designed for distributed queries execution. It hides from
/// the caller the details about the actual locations at which a distributed
/// query is performed. Depending on the type of query to be performed,
/// (currently SELECT, DESCRIBE, or ALTER (for resharding)), a so-called
/// query constructor is specified. Such an object states, among other things,
/// how connections must be allocated for remote execution.
2016-01-28 01:00:27 +00:00
class Query
{
public:
Query(IQueryConstructor & query_constructor_, const Cluster & cluster_,
2016-01-28 01:00:27 +00:00
ASTPtr query_ast_, const Context & context_, const Settings & settings_, bool enable_shard_multiplexing_);
/// For each location at which we perform the query, create an input stream
/// from which we can fetch the result.
2016-01-28 01:00:27 +00:00
BlockInputStreams execute();
private:
IQueryConstructor & query_constructor;
const Cluster & cluster;
2016-01-28 01:00:27 +00:00
ASTPtr query_ast;
const Context & context;
const Settings & settings;
bool enable_shard_multiplexing;
};
}
}