mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
#include <Parsers/ASTQueryWithOutput.h>
|
|
|
|
#include <Common/assert_cast.h>
|
|
#include <Parsers/ASTSetQuery.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void ASTQueryWithOutput::cloneOutputOptions(ASTQueryWithOutput & cloned) const
|
|
{
|
|
if (out_file)
|
|
{
|
|
cloned.out_file = out_file->clone();
|
|
cloned.children.push_back(cloned.out_file);
|
|
}
|
|
if (format)
|
|
{
|
|
cloned.format = format->clone();
|
|
cloned.children.push_back(cloned.format);
|
|
}
|
|
if (settings_ast)
|
|
{
|
|
cloned.settings_ast = settings_ast->clone();
|
|
cloned.children.push_back(cloned.settings_ast);
|
|
}
|
|
}
|
|
|
|
void ASTQueryWithOutput::formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const
|
|
{
|
|
formatQueryImpl(s, state, frame);
|
|
|
|
std::string indent_str = s.one_line ? "" : std::string(4u * frame.indent, ' ');
|
|
|
|
if (out_file)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << indent_str << "INTO OUTFILE " << (s.hilite ? hilite_none : "");
|
|
out_file->formatImpl(s, state, frame);
|
|
|
|
s.ostr << (s.hilite ? hilite_keyword : "");
|
|
if (is_outfile_append)
|
|
s.ostr << " APPEND";
|
|
if (is_outfile_truncate)
|
|
s.ostr << " TRUNCATE";
|
|
if (is_into_outfile_with_stdout)
|
|
s.ostr << " AND STDOUT";
|
|
s.ostr << (s.hilite ? hilite_none : "");
|
|
}
|
|
|
|
if (format)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << indent_str << "FORMAT " << (s.hilite ? hilite_none : "");
|
|
format->formatImpl(s, state, frame);
|
|
}
|
|
|
|
if (settings_ast && assert_cast<ASTSetQuery *>(settings_ast.get())->print_in_format)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << indent_str << "SETTINGS " << (s.hilite ? hilite_none : "");
|
|
settings_ast->formatImpl(s, state, frame);
|
|
}
|
|
}
|
|
|
|
bool ASTQueryWithOutput::resetOutputASTIfExist(IAST & ast)
|
|
{
|
|
/// FIXME: try to prettify this cast using `as<>()`
|
|
if (auto * ast_with_output = dynamic_cast<ASTQueryWithOutput *>(&ast))
|
|
{
|
|
ast_with_output->format.reset();
|
|
ast_with_output->out_file.reset();
|
|
ast_with_output->settings_ast.reset();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
}
|