MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / ParserTableOverrideDeclaration

Class ParserTableOverrideDeclaration

src/Parsers/ParserCreateQuery.h:606–615  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

604};
605
606class ParserTableOverrideDeclaration : public IParserBase
607{
608public:
609 const bool is_standalone;
610 explicit ParserTableOverrideDeclaration(bool is_standalone_ = true) : is_standalone(is_standalone_) { }
611
612protected:
613 const char * getName() const override { return "table override declaration"; }
614 bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
615};
616
617class ParserTableOverridesDeclarationList : public IParserBase
618{

Callers 1

parseImplMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected