aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/JSONPath/ASTs/ASTJSONPathRoot.h
blob: 1c6469c5b75bac6ba360c48eb092d4cc88d68650 (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 ASTJSONPathRoot : public IAST
{
public:
    String getID(char) const override { return "ASTJSONPathRoot"; }

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

}