mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
30 lines
714 B
C++
30 lines
714 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Something like t.*
|
|
* It will have qualifier as its child ASTIdentifier.
|
|
* Optional transformers can be attached to further manipulate these expanded columns.
|
|
*/
|
|
class ASTQualifiedAsterisk : public IAST
|
|
{
|
|
public:
|
|
String getID(char) const override { return "QualifiedAsterisk"; }
|
|
ASTPtr clone() const override
|
|
{
|
|
auto clone = std::make_shared<ASTQualifiedAsterisk>(*this);
|
|
clone->cloneChildren();
|
|
return clone;
|
|
}
|
|
void appendColumnName(WriteBuffer & ostr) const override;
|
|
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
|
};
|
|
|
|
}
|