aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwhcrc <whcrc@ydb.tech>2022-10-03 12:03:24 +0300
committerwhcrc <whcrc@ydb.tech>2022-10-03 12:03:24 +0300
commit5fd82036d934b10d0d02aa1f4789ce7e52df84b1 (patch)
treeb595b251174e7f751e1dadccbcd4a91f548c33f0
parente5de6b183d6635355378081851d499d3255a4a1f (diff)
downloadydb-5fd82036d934b10d0d02aa1f4789ce7e52df84b1.tar.gz
add GetPgFactory to pgdummy
-rw-r--r--ydb/library/yql/sql/pg_dummy/pg_sql_dummy.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/ydb/library/yql/sql/pg_dummy/pg_sql_dummy.cpp b/ydb/library/yql/sql/pg_dummy/pg_sql_dummy.cpp
index d988ae608ff..9758f72830f 100644
--- a/ydb/library/yql/sql/pg_dummy/pg_sql_dummy.cpp
+++ b/ydb/library/yql/sql/pg_dummy/pg_sql_dummy.cpp
@@ -1,5 +1,6 @@
#include <ydb/library/yql/sql/pg_sql.h>
#include <ydb/library/yql/providers/common/codec/yql_pg_codec.h>
+#include <ydb/library/yql/minikql/computation/mkql_computation_node.h>
#include <ydb/library/yql/minikql/computation/mkql_computation_node_pack_impl.h>
#include <ydb/library/yql/minikql/computation/presort_impl.h>
#include <ydb/library/yql/core/yql_pg_utils.h>
@@ -252,4 +253,8 @@ std::unique_ptr<NUdf::IPgBuilder> CreatePgBuilder() {
return std::make_unique<TPgDummyBuilder>();
}
+NKikimr::NMiniKQL::TComputationNodeFactory GetPgFactory() {
+ return {};
+}
+
} // NYql