blob: dfc117db84682ea435503e7821e9161ac76060fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <Functions/JSONPath/ASTs/ASTJSONPathQuery.h>
#include <Parsers/IAST.h>
namespace DB
{
class ASTJSONPath : public IAST
{
public:
String getID(char) const override { return "ASTJSONPath"; }
ASTPtr clone() const override { return std::make_shared<ASTJSONPath>(*this); }
ASTJSONPathQuery * jsonpath_query;
};
}
|