diff options
author | whcrc <whcrc@ydb.tech> | 2022-10-03 12:03:24 +0300 |
---|---|---|
committer | whcrc <whcrc@ydb.tech> | 2022-10-03 12:03:24 +0300 |
commit | 5fd82036d934b10d0d02aa1f4789ce7e52df84b1 (patch) | |
tree | b595b251174e7f751e1dadccbcd4a91f548c33f0 | |
parent | e5de6b183d6635355378081851d499d3255a4a1f (diff) | |
download | ydb-5fd82036d934b10d0d02aa1f4789ce7e52df84b1.tar.gz |
add GetPgFactory to pgdummy
-rw-r--r-- | ydb/library/yql/sql/pg_dummy/pg_sql_dummy.cpp | 5 |
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 |