ClickHouse/dbms/src/Parsers/ASTQueryWithTableAndOutput.cpp

15 lines
402 B
C++
Raw Normal View History

#include <Parsers/ASTQueryWithTableAndOutput.h>
namespace DB
{
void ASTQueryWithTableAndOutput::formatHelper(const FormatSettings & settings, const char * name) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << name << " " << (settings.hilite ? hilite_none : "");
settings.ostr << (!database.empty() ? backQuoteIfNeed(database) + "." : "") << backQuoteIfNeed(table);
}
}