summaryrefslogtreecommitdiffstats
path: root/yql/essentials/parser/pg_wrapper/interface/comp_factory.h
diff options
context:
space:
mode:
authorvvvv <[email protected]>2024-11-06 23:54:28 +0300
committervvvv <[email protected]>2024-11-07 00:04:25 +0300
commitcf2a23963ac10add28c50cc114fbf48953eca5aa (patch)
tree174b849b8ecfa96b0c8e4409ab3287721a9210c8 /yql/essentials/parser/pg_wrapper/interface/comp_factory.h
parent3a3113a2bf5a7fab32bde414932082b264c559fc (diff)
Prepare move yql/minikql YQL-19206
types,jsonpath,dom commit_hash:6b54be5968b6a30b6d97fe3a1611574bcefc749e
Diffstat (limited to 'yql/essentials/parser/pg_wrapper/interface/comp_factory.h')
-rw-r--r--yql/essentials/parser/pg_wrapper/interface/comp_factory.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/yql/essentials/parser/pg_wrapper/interface/comp_factory.h b/yql/essentials/parser/pg_wrapper/interface/comp_factory.h
new file mode 100644
index 00000000000..e969c6e1c69
--- /dev/null
+++ b/yql/essentials/parser/pg_wrapper/interface/comp_factory.h
@@ -0,0 +1,20 @@
+#pragma once
+
+#include <functional>
+
+namespace NKikimr {
+namespace NMiniKQL {
+
+class IComputationNode;
+class TCallable;
+struct TComputationNodeFactoryContext;
+
+} // NMiniKQL
+} // NKikimr
+
+namespace NYql {
+
+std::function<NKikimr::NMiniKQL::IComputationNode* (NKikimr::NMiniKQL::TCallable&,
+ const NKikimr::NMiniKQL::TComputationNodeFactoryContext&)> GetPgFactory();
+
+} // NYql