2017-04-16 05:40:17 +00:00
|
|
|
#include <iomanip>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/ASTInsertQuery.h>
|
2016-11-20 12:43:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void ASTInsertQuery::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
|
|
|
|
{
|
2018-05-17 15:17:07 +00:00
|
|
|
frame.need_parens = false;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-11-02 14:01:11 +00:00
|
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "INSERT INTO ";
|
|
|
|
if (table_function)
|
2017-12-01 13:23:10 +00:00
|
|
|
{
|
|
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "FUNCTION ";
|
2017-11-02 14:01:11 +00:00
|
|
|
table_function->formatImpl(settings, state, frame);
|
2017-12-01 13:23:10 +00:00
|
|
|
}
|
2017-11-02 14:01:11 +00:00
|
|
|
else
|
|
|
|
settings.ostr << (settings.hilite ? hilite_none : "")
|
|
|
|
<< (!database.empty() ? backQuoteIfNeed(database) + "." : "") << backQuoteIfNeed(table);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (columns)
|
|
|
|
{
|
|
|
|
settings.ostr << " (";
|
|
|
|
columns->formatImpl(settings, state, frame);
|
|
|
|
settings.ostr << ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (select)
|
|
|
|
{
|
|
|
|
settings.ostr << " ";
|
|
|
|
select->formatImpl(settings, state, frame);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!format.empty())
|
|
|
|
{
|
|
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " FORMAT " << (settings.hilite ? hilite_none : "") << format;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " VALUES" << (settings.hilite ? hilite_none : "");
|
|
|
|
}
|
|
|
|
}
|
2016-11-20 12:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|