mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class WriteBuffer;
|
|
|
|
/** SELECT COLUMNS('regexp') is expanded to multiple columns like * (asterisk).
|
|
* Optional transformers can be attached to further manipulate these expanded columns.
|
|
*/
|
|
class ASTColumnsRegexpMatcher : public IAST
|
|
{
|
|
public:
|
|
String getID(char) const override { return "ColumnsRegexpMatcher"; }
|
|
ASTPtr clone() const override;
|
|
|
|
void appendColumnName(WriteBuffer & ostr) const override;
|
|
void setPattern(String pattern);
|
|
const String & getPattern() const;
|
|
void updateTreeHashImpl(SipHash & hash_state, bool ignore_aliases) const override;
|
|
|
|
ASTPtr expression;
|
|
ASTPtr transformers;
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
|
|
private:
|
|
String pattern;
|
|
};
|
|
|
|
/// Same as the above but use a list of column names to do matching.
|
|
class ASTColumnsListMatcher : public IAST
|
|
{
|
|
public:
|
|
String getID(char) const override { return "ColumnsListMatcher"; }
|
|
ASTPtr clone() const override;
|
|
void appendColumnName(WriteBuffer & ostr) const override;
|
|
|
|
ASTPtr expression;
|
|
ASTPtr column_list;
|
|
ASTPtr transformers;
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
};
|
|
|
|
/// Same as ASTColumnsRegexpMatcher. Qualified identifier is first child.
|
|
class ASTQualifiedColumnsRegexpMatcher : public IAST
|
|
{
|
|
public:
|
|
String getID(char) const override { return "QualifiedColumnsRegexpMatcher"; }
|
|
ASTPtr clone() const override;
|
|
|
|
void appendColumnName(WriteBuffer & ostr) const override;
|
|
void setPattern(String pattern_);
|
|
const String & getPattern() const;
|
|
void updateTreeHashImpl(SipHash & hash_state, bool ignore_aliases) const override;
|
|
|
|
ASTPtr qualifier;
|
|
ASTPtr transformers;
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
|
|
private:
|
|
String pattern;
|
|
};
|
|
|
|
/// Same as ASTColumnsListMatcher. Qualified identifier is first child.
|
|
class ASTQualifiedColumnsListMatcher : public IAST
|
|
{
|
|
public:
|
|
String getID(char) const override { return "QualifiedColumnsListMatcher"; }
|
|
ASTPtr clone() const override;
|
|
void appendColumnName(WriteBuffer & ostr) const override;
|
|
|
|
ASTPtr qualifier;
|
|
ASTPtr column_list;
|
|
ASTPtr transformers;
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
|
|
};
|
|
|
|
}
|