mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Query with output options
|
|
* (supporting [INTO OUTFILE 'file_name'] [FORMAT format_name] [SETTINGS key1 = value1, key2 = value2, ...] suffix).
|
|
*/
|
|
class ASTQueryWithOutput : public IAST
|
|
{
|
|
public:
|
|
ASTPtr out_file;
|
|
ASTPtr format;
|
|
ASTPtr settings_ast;
|
|
|
|
void formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const final;
|
|
|
|
/// Remove 'FORMAT <fmt> and INTO OUTFILE <file>' if exists
|
|
static bool resetOutputASTIfExist(IAST & ast);
|
|
|
|
protected:
|
|
/// NOTE: call this helper at the end of the clone() method of descendant class.
|
|
void cloneOutputOptions(ASTQueryWithOutput & cloned) const;
|
|
|
|
/// Format only the query part of the AST (without output options).
|
|
virtual void formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const = 0;
|
|
};
|
|
|
|
|
|
/** Helper template for simple queries like SHOW PROCESSLIST.
|
|
*/
|
|
template <typename ASTIDAndQueryNames>
|
|
class ASTQueryWithOutputImpl : public ASTQueryWithOutput
|
|
{
|
|
public:
|
|
String getID(char) const override { return ASTIDAndQueryNames::ID; }
|
|
|
|
ASTPtr clone() const override
|
|
{
|
|
auto res = std::make_shared<ASTQueryWithOutputImpl<ASTIDAndQueryNames>>(*this);
|
|
res->children.clear();
|
|
cloneOutputOptions(*res);
|
|
return res;
|
|
}
|
|
|
|
protected:
|
|
void formatQueryImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "")
|
|
<< ASTIDAndQueryNames::Query << (settings.hilite ? hilite_none : "");
|
|
}
|
|
};
|
|
|
|
}
|