aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <rvu@ydb.tech>2023-09-26 20:22:20 +0300
committerudovichenko-r <rvu@ydb.tech>2023-09-26 21:13:05 +0300
commit76efcac2f25b96387c9fb33cf5a198b0bc337e01 (patch)
tree523993807b579209aa85fa0fa47fbcb6ef676ec9
parent77f117e80302824bfc6b08d713f0d5d53d1e878e (diff)
downloadydb-76efcac2f25b96387c9fb33cf5a198b0bc337e01.tar.gz
[yql] Fix dependencies
YQL-16743
-rw-r--r--ydb/library/yql/providers/dq/provider/CMakeLists.darwin-x86_64.txt3
-rw-r--r--ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt3
-rw-r--r--ydb/library/yql/providers/dq/provider/CMakeLists.linux-x86_64.txt3
-rw-r--r--ydb/library/yql/providers/dq/provider/CMakeLists.windows-x86_64.txt3
-rw-r--r--ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin-x86_64.txt5
-rw-r--r--ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt5
-rw-r--r--ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-x86_64.txt5
-rw-r--r--ydb/library/yql/providers/dq/provider/exec/CMakeLists.windows-x86_64.txt5
-rw-r--r--ydb/library/yql/providers/dq/provider/exec/ya.make5
-rw-r--r--ydb/library/yql/providers/dq/provider/ya.make3
-rw-r--r--ydb/library/yql/providers/dq/provider/yql_dq_statistics_json.h2
-rw-r--r--ydb/library/yql/providers/dq/task_runner/tasks_runner_local.cpp1
-rw-r--r--ydb/library/yql/tools/astdiff/CMakeLists.darwin-x86_64.txt1
-rw-r--r--ydb/library/yql/tools/astdiff/CMakeLists.linux-aarch64.txt1
-rw-r--r--ydb/library/yql/tools/astdiff/CMakeLists.linux-x86_64.txt1
-rw-r--r--ydb/library/yql/tools/astdiff/CMakeLists.windows-x86_64.txt1
-rw-r--r--ydb/library/yql/tools/astdiff/ya.make1
-rw-r--r--ydb/library/yql/tools/yqlrun/CMakeLists.darwin-x86_64.txt1
-rw-r--r--ydb/library/yql/tools/yqlrun/CMakeLists.linux-aarch64.txt1
-rw-r--r--ydb/library/yql/tools/yqlrun/CMakeLists.linux-x86_64.txt1
-rw-r--r--ydb/library/yql/tools/yqlrun/CMakeLists.windows-x86_64.txt1
-rw-r--r--ydb/library/yql/tools/yqlrun/ya.make1
22 files changed, 41 insertions, 12 deletions
diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.darwin-x86_64.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.darwin-x86_64.txt
index 899857894e..e5708247fb 100644
--- a/ydb/library/yql/providers/dq/provider/CMakeLists.darwin-x86_64.txt
+++ b/ydb/library/yql/providers/dq/provider/CMakeLists.darwin-x86_64.txt
@@ -19,6 +19,9 @@ target_link_libraries(providers-dq-provider PUBLIC
cpp-grpc-client
cpp-threading-task_scheduler
cpp-threading-future
+ library-cpp-svnversion
+ cpp-yson-node
+ library-cpp-yson
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt
index 3d2343c2a7..e3775b05a3 100644
--- a/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt
+++ b/ydb/library/yql/providers/dq/provider/CMakeLists.linux-aarch64.txt
@@ -20,6 +20,9 @@ target_link_libraries(providers-dq-provider PUBLIC
cpp-grpc-client
cpp-threading-task_scheduler
cpp-threading-future
+ library-cpp-svnversion
+ cpp-yson-node
+ library-cpp-yson
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.linux-x86_64.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.linux-x86_64.txt
index 3d2343c2a7..e3775b05a3 100644
--- a/ydb/library/yql/providers/dq/provider/CMakeLists.linux-x86_64.txt
+++ b/ydb/library/yql/providers/dq/provider/CMakeLists.linux-x86_64.txt
@@ -20,6 +20,9 @@ target_link_libraries(providers-dq-provider PUBLIC
cpp-grpc-client
cpp-threading-task_scheduler
cpp-threading-future
+ library-cpp-svnversion
+ cpp-yson-node
+ library-cpp-yson
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/CMakeLists.windows-x86_64.txt b/ydb/library/yql/providers/dq/provider/CMakeLists.windows-x86_64.txt
index 899857894e..e5708247fb 100644
--- a/ydb/library/yql/providers/dq/provider/CMakeLists.windows-x86_64.txt
+++ b/ydb/library/yql/providers/dq/provider/CMakeLists.windows-x86_64.txt
@@ -19,6 +19,9 @@ target_link_libraries(providers-dq-provider PUBLIC
cpp-grpc-client
cpp-threading-task_scheduler
cpp-threading-future
+ library-cpp-svnversion
+ cpp-yson-node
+ library-cpp-yson
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin-x86_64.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin-x86_64.txt
index 3360a34a23..4f1b26c851 100644
--- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin-x86_64.txt
+++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.darwin-x86_64.txt
@@ -14,8 +14,9 @@ target_compile_options(dq-provider-exec PRIVATE
target_link_libraries(dq-provider-exec PUBLIC
contrib-libs-cxxsupp
yutil
- cpp-grpc-client
- cpp-threading-task_scheduler
+ cpp-yson-node
+ library-cpp-svnversion
+ cpp-digest-md5
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt
index e56ec01d4c..5e7983f052 100644
--- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt
+++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-aarch64.txt
@@ -15,8 +15,9 @@ target_link_libraries(dq-provider-exec PUBLIC
contrib-libs-linux-headers
contrib-libs-cxxsupp
yutil
- cpp-grpc-client
- cpp-threading-task_scheduler
+ cpp-yson-node
+ library-cpp-svnversion
+ cpp-digest-md5
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-x86_64.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-x86_64.txt
index e56ec01d4c..5e7983f052 100644
--- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-x86_64.txt
+++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.linux-x86_64.txt
@@ -15,8 +15,9 @@ target_link_libraries(dq-provider-exec PUBLIC
contrib-libs-linux-headers
contrib-libs-cxxsupp
yutil
- cpp-grpc-client
- cpp-threading-task_scheduler
+ cpp-yson-node
+ library-cpp-svnversion
+ cpp-digest-md5
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.windows-x86_64.txt b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.windows-x86_64.txt
index 3360a34a23..4f1b26c851 100644
--- a/ydb/library/yql/providers/dq/provider/exec/CMakeLists.windows-x86_64.txt
+++ b/ydb/library/yql/providers/dq/provider/exec/CMakeLists.windows-x86_64.txt
@@ -14,8 +14,9 @@ target_compile_options(dq-provider-exec PRIVATE
target_link_libraries(dq-provider-exec PUBLIC
contrib-libs-cxxsupp
yutil
- cpp-grpc-client
- cpp-threading-task_scheduler
+ cpp-yson-node
+ library-cpp-svnversion
+ cpp-digest-md5
public-lib-yson_value
cpp-client-ydb_driver
library-yql-core
diff --git a/ydb/library/yql/providers/dq/provider/exec/ya.make b/ydb/library/yql/providers/dq/provider/exec/ya.make
index f82a2ce6d2..6a0d432b7f 100644
--- a/ydb/library/yql/providers/dq/provider/exec/ya.make
+++ b/ydb/library/yql/providers/dq/provider/exec/ya.make
@@ -6,8 +6,9 @@ SRCS(
)
PEERDIR(
- library/cpp/grpc/client
- library/cpp/threading/task_scheduler
+ library/cpp/yson/node
+ library/cpp/svnversion
+ library/cpp/digest/md5
ydb/public/lib/yson_value
ydb/public/sdk/cpp/client/ydb_driver
ydb/library/yql/core
diff --git a/ydb/library/yql/providers/dq/provider/ya.make b/ydb/library/yql/providers/dq/provider/ya.make
index aec22bc2bd..67716ce286 100644
--- a/ydb/library/yql/providers/dq/provider/ya.make
+++ b/ydb/library/yql/providers/dq/provider/ya.make
@@ -30,6 +30,9 @@ PEERDIR(
library/cpp/grpc/client
library/cpp/threading/task_scheduler
library/cpp/threading/future
+ library/cpp/svnversion
+ library/cpp/yson/node
+ library/cpp/yson
ydb/public/lib/yson_value
ydb/public/sdk/cpp/client/ydb_driver
ydb/library/yql/core
diff --git a/ydb/library/yql/providers/dq/provider/yql_dq_statistics_json.h b/ydb/library/yql/providers/dq/provider/yql_dq_statistics_json.h
index d7cec7fb71..9ab8f2dee2 100644
--- a/ydb/library/yql/providers/dq/provider/yql_dq_statistics_json.h
+++ b/ydb/library/yql/providers/dq/provider/yql_dq_statistics_json.h
@@ -1,7 +1,7 @@
#pragma once
#include <ydb/library/yql/core/yql_execution.h>
-#include <library//cpp/yson/writer.h>
+#include <library/cpp/yson/writer.h>
namespace NYql {
diff --git a/ydb/library/yql/providers/dq/task_runner/tasks_runner_local.cpp b/ydb/library/yql/providers/dq/task_runner/tasks_runner_local.cpp
index 5ee28d1e73..52e4ea5ee8 100644
--- a/ydb/library/yql/providers/dq/task_runner/tasks_runner_local.cpp
+++ b/ydb/library/yql/providers/dq/task_runner/tasks_runner_local.cpp
@@ -15,7 +15,6 @@
#include <library/cpp/yson/node/node.h>
#include <library/cpp/yson/node/node_io.h>
-#include <library/cpp/svnversion/svnversion.h>
#include <util/system/env.h>
#include <util/stream/file.h>
diff --git a/ydb/library/yql/tools/astdiff/CMakeLists.darwin-x86_64.txt b/ydb/library/yql/tools/astdiff/CMakeLists.darwin-x86_64.txt
index 09fe7f98db..0b4989a632 100644
--- a/ydb/library/yql/tools/astdiff/CMakeLists.darwin-x86_64.txt
+++ b/ydb/library/yql/tools/astdiff/CMakeLists.darwin-x86_64.txt
@@ -13,6 +13,7 @@ target_link_libraries(astdiff PUBLIC
yutil
library-cpp-cpuid_check
library-cpp-getopt
+ library-cpp-svnversion
library-yql-ast
yql-utils-backtrace
)
diff --git a/ydb/library/yql/tools/astdiff/CMakeLists.linux-aarch64.txt b/ydb/library/yql/tools/astdiff/CMakeLists.linux-aarch64.txt
index d40d22a666..bda84f3b09 100644
--- a/ydb/library/yql/tools/astdiff/CMakeLists.linux-aarch64.txt
+++ b/ydb/library/yql/tools/astdiff/CMakeLists.linux-aarch64.txt
@@ -13,6 +13,7 @@ target_link_libraries(astdiff PUBLIC
contrib-libs-cxxsupp
yutil
library-cpp-getopt
+ library-cpp-svnversion
library-yql-ast
yql-utils-backtrace
)
diff --git a/ydb/library/yql/tools/astdiff/CMakeLists.linux-x86_64.txt b/ydb/library/yql/tools/astdiff/CMakeLists.linux-x86_64.txt
index 95dcdef690..a49bc32e72 100644
--- a/ydb/library/yql/tools/astdiff/CMakeLists.linux-x86_64.txt
+++ b/ydb/library/yql/tools/astdiff/CMakeLists.linux-x86_64.txt
@@ -14,6 +14,7 @@ target_link_libraries(astdiff PUBLIC
yutil
library-cpp-cpuid_check
library-cpp-getopt
+ library-cpp-svnversion
library-yql-ast
yql-utils-backtrace
)
diff --git a/ydb/library/yql/tools/astdiff/CMakeLists.windows-x86_64.txt b/ydb/library/yql/tools/astdiff/CMakeLists.windows-x86_64.txt
index 1e43832a4d..f3984d6e90 100644
--- a/ydb/library/yql/tools/astdiff/CMakeLists.windows-x86_64.txt
+++ b/ydb/library/yql/tools/astdiff/CMakeLists.windows-x86_64.txt
@@ -13,6 +13,7 @@ target_link_libraries(astdiff PUBLIC
yutil
library-cpp-cpuid_check
library-cpp-getopt
+ library-cpp-svnversion
library-yql-ast
yql-utils-backtrace
)
diff --git a/ydb/library/yql/tools/astdiff/ya.make b/ydb/library/yql/tools/astdiff/ya.make
index 4f49b8d1c0..9081089523 100644
--- a/ydb/library/yql/tools/astdiff/ya.make
+++ b/ydb/library/yql/tools/astdiff/ya.make
@@ -6,6 +6,7 @@ SRCS(
PEERDIR(
library/cpp/getopt
+ library/cpp/svnversion
ydb/library/yql/ast
ydb/library/yql/utils/backtrace
)
diff --git a/ydb/library/yql/tools/yqlrun/CMakeLists.darwin-x86_64.txt b/ydb/library/yql/tools/yqlrun/CMakeLists.darwin-x86_64.txt
index d25eb2002d..7c23bc9b72 100644
--- a/ydb/library/yql/tools/yqlrun/CMakeLists.darwin-x86_64.txt
+++ b/ydb/library/yql/tools/yqlrun/CMakeLists.darwin-x86_64.txt
@@ -19,6 +19,7 @@ target_link_libraries(yqlrun PUBLIC
contrib-libs-protobuf
library-cpp-getopt
library-cpp-yson
+ library-cpp-svnversion
yql-sql-pg
yql-core-facade
yql-core-file_storage
diff --git a/ydb/library/yql/tools/yqlrun/CMakeLists.linux-aarch64.txt b/ydb/library/yql/tools/yqlrun/CMakeLists.linux-aarch64.txt
index 87eca78368..d0e0d86457 100644
--- a/ydb/library/yql/tools/yqlrun/CMakeLists.linux-aarch64.txt
+++ b/ydb/library/yql/tools/yqlrun/CMakeLists.linux-aarch64.txt
@@ -19,6 +19,7 @@ target_link_libraries(yqlrun PUBLIC
contrib-libs-protobuf
library-cpp-getopt
library-cpp-yson
+ library-cpp-svnversion
yql-sql-pg
yql-core-facade
yql-core-file_storage
diff --git a/ydb/library/yql/tools/yqlrun/CMakeLists.linux-x86_64.txt b/ydb/library/yql/tools/yqlrun/CMakeLists.linux-x86_64.txt
index bafc698219..df1cb39e8e 100644
--- a/ydb/library/yql/tools/yqlrun/CMakeLists.linux-x86_64.txt
+++ b/ydb/library/yql/tools/yqlrun/CMakeLists.linux-x86_64.txt
@@ -20,6 +20,7 @@ target_link_libraries(yqlrun PUBLIC
contrib-libs-protobuf
library-cpp-getopt
library-cpp-yson
+ library-cpp-svnversion
yql-sql-pg
yql-core-facade
yql-core-file_storage
diff --git a/ydb/library/yql/tools/yqlrun/CMakeLists.windows-x86_64.txt b/ydb/library/yql/tools/yqlrun/CMakeLists.windows-x86_64.txt
index f5841dc63a..7cc9513b04 100644
--- a/ydb/library/yql/tools/yqlrun/CMakeLists.windows-x86_64.txt
+++ b/ydb/library/yql/tools/yqlrun/CMakeLists.windows-x86_64.txt
@@ -19,6 +19,7 @@ target_link_libraries(yqlrun PUBLIC
contrib-libs-protobuf
library-cpp-getopt
library-cpp-yson
+ library-cpp-svnversion
yql-sql-pg
yql-core-facade
yql-core-file_storage
diff --git a/ydb/library/yql/tools/yqlrun/ya.make b/ydb/library/yql/tools/yqlrun/ya.make
index 195c9dca81..0ce6dc2712 100644
--- a/ydb/library/yql/tools/yqlrun/ya.make
+++ b/ydb/library/yql/tools/yqlrun/ya.make
@@ -17,6 +17,7 @@ PEERDIR(
contrib/libs/protobuf
library/cpp/getopt
library/cpp/yson
+ library/cpp/svnversion
ydb/library/yql/sql/pg
ydb/library/yql/core/facade
ydb/library/yql/core/file_storage