ClickHouse/src/Parsers/ASTColumnsMatcher.h

54 lines
1.3 KiB
C++
Raw Normal View History

2019-07-12 11:17:38 +00:00
#pragma once
#include <Parsers/IAST.h>
2019-07-16 20:05:00 +00:00
namespace re2
{
class RE2;
2019-07-16 20:05:00 +00:00
}
2019-07-12 11:17:38 +00:00
namespace DB
{
2019-07-16 20:05:00 +00:00
class WriteBuffer;
/** SELECT COLUMNS('regexp') is expanded to multiple columns like * (asterisk).
2020-08-29 05:33:46 +00:00
* Optional transformers can be attached to further manipulate these expanded columns.
2019-07-16 20:05:00 +00:00
*/
class ASTColumnsRegexpMatcher : public IAST
2019-07-12 11:17:38 +00:00
{
public:
String getID(char) const override { return "ColumnsRegexpMatcher"; }
2019-07-12 11:17:38 +00:00
ASTPtr clone() const override;
2019-07-16 20:05:00 +00:00
2019-07-12 11:17:38 +00:00
void appendColumnName(WriteBuffer & ostr) const override;
2019-07-16 20:05:00 +00:00
void setPattern(String pattern);
bool isColumnMatching(const String & column_name) const;
2020-08-20 02:01:40 +00:00
void updateTreeHashImpl(SipHash & hash_state) const override;
2019-07-12 11:17:38 +00:00
protected:
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
private:
2019-07-16 20:05:00 +00:00
std::shared_ptr<re2::RE2> column_matcher;
String original_pattern;
};
2019-07-12 11:17:38 +00:00
/// 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;
void updateTreeHashImpl(SipHash & hash_state) const override;
ASTPtr column_list;
protected:
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override;
2019-07-12 11:17:38 +00:00
};
}