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

#include <Parsers/IParserBase.h>


namespace DB
{
class ParserJSONPathQuery : public IParserBase
{
protected:
    const char * getName() const override { return "ParserJSONPathQuery"; }
    bool parseImpl(Pos & pos, ASTPtr & query, Expected & expected) override;
};
}