ClickHouse/dbms/src/Parsers/ASTFunctionWithKeyValueArguments.h

57 lines
1.4 KiB
C++
Raw Normal View History

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
2019-10-01 14:54:28 +00:00
ASTPtr second;
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;
};
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;
public:
String getID(char delim) const override;
ASTPtr clone() const override;
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
};
}