diff options
author | dcherednik <dcherednik@ydb.tech> | 2023-08-09 18:53:44 +0300 |
---|---|---|
committer | dcherednik <dcherednik@ydb.tech> | 2023-08-09 20:08:30 +0300 |
commit | bf862ddf5c6178e1bb5e4fb3f7c61015deebe284 (patch) | |
tree | fe336f6784151bb840bd39bd7efc2b967f5ca585 | |
parent | 0ddf9b6ef915d289468c42605aab7da131b9e213 (diff) | |
download | ydb-bf862ddf5c6178e1bb5e4fb3f7c61015deebe284.tar.gz |
Fix missed peerdir for range_helpers ut
5 files changed, 10 insertions, 0 deletions
diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin-x86_64.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin-x86_64.txt index 3cc8e34f49..99f029dfd8 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin-x86_64.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.darwin-x86_64.txt @@ -21,6 +21,8 @@ target_link_libraries(ydb-library-yql-providers-s3-range_helpers-ut PUBLIC cpp-testing-unittest_main providers-s3-range_helpers providers-common-provider + udf-service-exception_policy + yql-sql-pg_dummy ) target_link_options(ydb-library-yql-providers-s3-range_helpers-ut PRIVATE -Wl,-platform_version,macos,11.0,11.0 diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt index 4799d1084f..9fdc25968d 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-aarch64.txt @@ -21,6 +21,8 @@ target_link_libraries(ydb-library-yql-providers-s3-range_helpers-ut PUBLIC cpp-testing-unittest_main providers-s3-range_helpers providers-common-provider + udf-service-exception_policy + yql-sql-pg_dummy ) target_link_options(ydb-library-yql-providers-s3-range_helpers-ut PRIVATE -ldl diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-x86_64.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-x86_64.txt index 15a20bb7dd..7c0b217f66 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-x86_64.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.linux-x86_64.txt @@ -22,6 +22,8 @@ target_link_libraries(ydb-library-yql-providers-s3-range_helpers-ut PUBLIC cpp-testing-unittest_main providers-s3-range_helpers providers-common-provider + udf-service-exception_policy + yql-sql-pg_dummy ) target_link_options(ydb-library-yql-providers-s3-range_helpers-ut PRIVATE -ldl diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.windows-x86_64.txt b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.windows-x86_64.txt index f175601096..826e5390f2 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.windows-x86_64.txt +++ b/ydb/library/yql/providers/s3/range_helpers/ut/CMakeLists.windows-x86_64.txt @@ -21,6 +21,8 @@ target_link_libraries(ydb-library-yql-providers-s3-range_helpers-ut PUBLIC cpp-testing-unittest_main providers-s3-range_helpers providers-common-provider + udf-service-exception_policy + yql-sql-pg_dummy ) target_sources(ydb-library-yql-providers-s3-range_helpers-ut PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/s3/range_helpers/file_tree_builder_ut.cpp diff --git a/ydb/library/yql/providers/s3/range_helpers/ut/ya.make b/ydb/library/yql/providers/s3/range_helpers/ut/ya.make index bc8dab1697..c5783d84f8 100644 --- a/ydb/library/yql/providers/s3/range_helpers/ut/ya.make +++ b/ydb/library/yql/providers/s3/range_helpers/ut/ya.make @@ -7,6 +7,8 @@ SRCS( PEERDIR( ydb/library/yql/providers/common/provider + ydb/library/yql/public/udf/service/exception_policy + ydb/library/yql/sql/pg_dummy ) YQL_LAST_ABI_VERSION() |