aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPath.h
blob: 7d2c2ad642c513718562729943f721a7b5192b54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <Parsers/IParserBase.h>


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;
};

}