#include #include namespace DB { ASTPtr ASTAsterisk::clone() const { auto clone = std::make_shared(*this); clone->cloneChildren(); return clone; } void ASTAsterisk::appendColumnName(WriteBuffer & ostr) const { ostr.write('*'); } void ASTAsterisk::formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const { settings.ostr << "*"; } }