blob: a9c59a4e2b29c9cff33c7fae576c84c64566ce62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#pragma once
#include <Parsers/IAST.h>
#include <Parsers/IParser.h>
namespace DB
{
/// Parameters for rewriting queries without ON CLUSTER, see getRewrittenASTWithoutOnCluster().
struct WithoutOnClusterASTRewriteParams
{
/// Default database from the cluster's configuration.
String default_database;
/// The ID of the current host in the format.
String host_id;
};
/// TODO: Quite messy.
class ASTQueryWithOnCluster
{
public:
using Pos = IParser::Pos;
/// Should be parsed from ON CLUSTER <cluster> clause
String cluster;
/// new_database should be used by queries that refer to default db
/// and default_database is specified for remote server
virtual ASTPtr getRewrittenASTWithoutOnCluster(const WithoutOnClusterASTRewriteParams & params = {}) const = 0; /// NOLINT
/// Returns a query prepared for execution on remote server
std::string getRewrittenQueryWithoutOnCluster(const WithoutOnClusterASTRewriteParams & params = {}) const;
void formatOnCluster(const IAST::FormatSettings & settings) const;
/// Parses " CLUSTER [cluster|'cluster'] " clause
static bool parse(Pos & pos, std::string & cluster_str, Expected & expected);
virtual ~ASTQueryWithOnCluster() = default;
ASTQueryWithOnCluster() = default;
ASTQueryWithOnCluster(const ASTQueryWithOnCluster &) = default;
ASTQueryWithOnCluster & operator=(const ASTQueryWithOnCluster &) = default;
protected:
template <typename T>
static ASTPtr removeOnCluster(ASTPtr query_ptr, const std::string & new_database)
{
T & query = static_cast<T &>(*query_ptr);
query.cluster.clear();
if (!query.database)
query.setDatabase(new_database);
return query_ptr;
}
template <typename T>
static ASTPtr removeOnCluster(ASTPtr query_ptr)
{
T & query = static_cast<T &>(*query_ptr);
query.cluster.clear();
return query_ptr;
}
};
}
|