summaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathStar.h
diff options
context:
space:
mode:
authorAlexSm <[email protected]>2024-01-04 15:09:05 +0100
committerGitHub <[email protected]>2024-01-04 15:09:05 +0100
commitdab291146f6cd7d35684e3a1150e5bb1c412982c (patch)
tree36ef35f6cacb6432845a4a33f940c95871036b32 /contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathStar.h
parent63660ad5e7512029fd0218e7a636580695a24e1f (diff)
Library import 5, delete go dependencies (#832)
* Library import 5, delete go dependencies * Fix yt client
Diffstat (limited to 'contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathStar.h')
-rw-r--r--contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathStar.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathStar.h b/contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathStar.h
deleted file mode 100644
index 543823357de..00000000000
--- a/contrib/clickhouse/src/Functions/JSONPath/Parsers/ParserJSONPathStar.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#pragma once
-
-#include <Parsers/IParserBase.h>
-
-
-namespace DB
-{
-class ParserJSONPathStar : public IParserBase
-{
-private:
- const char * getName() const override { return "ParserJSONPathStar"; }
- bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
-
-public:
- explicit ParserJSONPathStar() = default;
-};
-
-}