#pragma once #include #include namespace DB { class ASTJSONPath : public IAST { public: String getID(char) const override { return "ASTJSONPath"; } ASTPtr clone() const override { return std::make_shared(*this); } ASTJSONPathQuery * jsonpath_query; }; }