aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathMemberAccess.h
blob: b28bf37d5ef4668d48442db57358ffb030a9c3d9 (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 ParserJSONPathMemberAccess : public IParserBase
{
    const char * getName() const override { return "ParserJSONPathMemberAccess"; }

    bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
};

}