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