#pragma once #include namespace DB { class ParserJSONPathRoot : public IParserBase { private: const char * getName() const override { return "ParserJSONPathRoot"; } bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override; public: explicit ParserJSONPathRoot() = default; }; }