blob: 59fed28d63e982ff982c1f474326db53a086ffd1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <Parsers/IParserBase.h>
namespace DB
{
class ParserJSONPathRoot : public IParserBase
{
private:
const char * getName() const override { return "ParserJSONPathRoot"; }
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
public:
explicit ParserJSONPathRoot() = default;
};
}
|