aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/JSONPath/ASTs/ASTJSONPathQuery.h
blob: ed2992777b2104cce1d51e6344d24519cd40c482 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <Parsers/IAST.h>

namespace DB
{
class ASTJSONPathQuery : public IAST
{
public:
    String getID(char) const override { return "ASTJSONPathQuery"; }

    ASTPtr clone() const override { return std::make_shared<ASTJSONPathQuery>(*this); }
};

}