2019-10-01 14:54:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
#include <Core/Types.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2019-10-08 13:26:15 +00:00
|
|
|
/// Pair with name and value in lisp programming langugate style. It contain
|
|
|
|
/// string as key, but value either can be literal or list of
|
|
|
|
/// pairs.
|
2019-10-01 14:54:28 +00:00
|
|
|
class ASTPair : public IAST
|
|
|
|
{
|
|
|
|
public:
|
2019-10-08 13:26:15 +00:00
|
|
|
/// Name or key of pair
|
2019-10-01 14:54:28 +00:00
|
|
|
String first;
|
2019-10-08 13:26:15 +00:00
|
|
|
/// Value of pair, which can be also list of pairs
|
2020-08-05 21:53:35 +00:00
|
|
|
IAST * second = nullptr;
|
2019-10-08 13:26:15 +00:00
|
|
|
/// Value is closed in brackets (HOST '127.0.0.1')
|
2019-10-08 09:47:17 +00:00
|
|
|
bool second_with_brackets;
|
2019-10-01 14:54:28 +00:00
|
|
|
|
|
|
|
public:
|
2019-10-08 09:47:17 +00:00
|
|
|
ASTPair(bool second_with_brackets_)
|
|
|
|
: second_with_brackets(second_with_brackets_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-10-01 14:54:28 +00:00
|
|
|
String getID(char delim) const override;
|
|
|
|
|
|
|
|
ASTPtr clone() const override;
|
|
|
|
|
|
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
2020-08-20 02:01:40 +00:00
|
|
|
|
|
|
|
void updateTreeHashImpl(SipHash & hash_state) const override;
|
2019-10-01 14:54:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-10-08 13:26:15 +00:00
|
|
|
/// Function with key-value arguments is a function which arguments consist of
|
|
|
|
/// pairs (see above). For example:
|
|
|
|
/// ->Pair with list of pairs as value<-
|
|
|
|
/// SOURCE(USER 'clickhouse' PORT 9000 REPLICA(HOST '127.0.0.1' PRIORITY 1) TABLE 'some_table')
|
2019-10-01 14:54:28 +00:00
|
|
|
class ASTFunctionWithKeyValueArguments : public IAST
|
|
|
|
{
|
|
|
|
public:
|
2019-10-08 13:26:15 +00:00
|
|
|
/// Name of function
|
2019-10-01 14:54:28 +00:00
|
|
|
String name;
|
2019-10-08 13:26:15 +00:00
|
|
|
/// Expression list
|
2019-10-01 14:54:28 +00:00
|
|
|
ASTPtr elements;
|
2020-04-06 11:02:17 +00:00
|
|
|
/// Has brackets around arguments
|
|
|
|
bool has_brackets;
|
|
|
|
|
|
|
|
ASTFunctionWithKeyValueArguments(bool has_brackets_ = true)
|
|
|
|
: has_brackets(has_brackets_)
|
|
|
|
{
|
|
|
|
}
|
2019-10-01 14:54:28 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
String getID(char delim) const override;
|
|
|
|
|
|
|
|
ASTPtr clone() const override;
|
|
|
|
|
|
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
2020-08-20 02:01:40 +00:00
|
|
|
|
|
|
|
void updateTreeHashImpl(SipHash & hash_state) const override;
|
2019-10-01 14:54:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|