ClickHouse/src/Parsers/ASTQueryWithOnCluster.cpp

39 lines
1.0 KiB
C++
Raw Normal View History

2017-04-21 12:39:28 +00:00
#include <Parsers/ASTQueryWithOnCluster.h>
#include <Parsers/queryToString.h>
#include <Parsers/CommonParsers.h>
#include <Parsers/ExpressionElementParsers.h>
2017-11-21 19:17:24 +00:00
#include <Parsers/parseIdentifierOrStringLiteral.h>
2017-04-21 12:39:28 +00:00
#include <Common/typeid_cast.h>
#include <Common/quoteString.h>
2017-04-21 12:39:28 +00:00
namespace DB
{
std::string ASTQueryWithOnCluster::getRewrittenQueryWithoutOnCluster(const std::string & new_database) const
{
return queryToString(getRewrittenASTWithoutOnCluster(new_database));
}
bool ASTQueryWithOnCluster::parse(Pos & pos, std::string & cluster_str, Expected & expected)
2017-04-21 12:39:28 +00:00
{
if (!ParserKeyword{"CLUSTER"}.ignore(pos, expected))
2017-04-21 12:39:28 +00:00
return false;
return parseIdentifierOrStringLiteral(pos, expected, cluster_str);
2017-04-21 12:39:28 +00:00
}
void ASTQueryWithOnCluster::formatOnCluster(const IAST::FormatSettings & settings) const
{
if (!cluster.empty())
{
settings.ostr << (settings.hilite ? IAST::hilite_keyword : "") << " ON CLUSTER " << (settings.hilite ? IAST::hilite_none : "")
<< backQuoteIfNeed(cluster);
}
}
}