diff options
author | vitalyisaev <vitalyisaev@yandex-team.com> | 2023-08-18 10:38:39 +0300 |
---|---|---|
committer | vitalyisaev <vitalyisaev@yandex-team.com> | 2023-08-18 12:44:47 +0300 |
commit | 7c2bc537e0c2275bac8902f18f61bd888c353c56 (patch) | |
tree | 504d09e01594ea5c10e94f5bf5cfd72b456320f0 | |
parent | 211f33c8250066df64234fea36c53dd3f5272e52 (diff) | |
download | ydb-7c2bc537e0c2275bac8902f18f61bd888c353c56.tar.gz |
Disrupt dependency between ydb/core/fq/libs/result_formatter and ydb/core/engine
```
➜ dqrun pwd
/home/vitalyisaev/arcadia/yql/tools/dqrun
➜ dqrun ya dump relation ydb/core/tablet
Target 'ydb/core/tablet' is not found in build graph.
```
6 files changed, 5 insertions, 6 deletions
diff --git a/ydb/core/fq/libs/result_formatter/CMakeLists.darwin-x86_64.txt b/ydb/core/fq/libs/result_formatter/CMakeLists.darwin-x86_64.txt index c0cf7c0ddd..37994c7c35 100644 --- a/ydb/core/fq/libs/result_formatter/CMakeLists.darwin-x86_64.txt +++ b/ydb/core/fq/libs/result_formatter/CMakeLists.darwin-x86_64.txt @@ -17,7 +17,7 @@ target_link_libraries(fq-libs-result_formatter PUBLIC yutil library-cpp-json cpp-json-yson - ydb-core-engine + ydb-library-mkql_proto library-yql-ast minikql-computation-llvm yql-public-udf diff --git a/ydb/core/fq/libs/result_formatter/CMakeLists.linux-aarch64.txt b/ydb/core/fq/libs/result_formatter/CMakeLists.linux-aarch64.txt index d8cdd8032d..d62b3106e8 100644 --- a/ydb/core/fq/libs/result_formatter/CMakeLists.linux-aarch64.txt +++ b/ydb/core/fq/libs/result_formatter/CMakeLists.linux-aarch64.txt @@ -18,7 +18,7 @@ target_link_libraries(fq-libs-result_formatter PUBLIC yutil library-cpp-json cpp-json-yson - ydb-core-engine + ydb-library-mkql_proto library-yql-ast minikql-computation-llvm yql-public-udf diff --git a/ydb/core/fq/libs/result_formatter/CMakeLists.linux-x86_64.txt b/ydb/core/fq/libs/result_formatter/CMakeLists.linux-x86_64.txt index d8cdd8032d..d62b3106e8 100644 --- a/ydb/core/fq/libs/result_formatter/CMakeLists.linux-x86_64.txt +++ b/ydb/core/fq/libs/result_formatter/CMakeLists.linux-x86_64.txt @@ -18,7 +18,7 @@ target_link_libraries(fq-libs-result_formatter PUBLIC yutil library-cpp-json cpp-json-yson - ydb-core-engine + ydb-library-mkql_proto library-yql-ast minikql-computation-llvm yql-public-udf diff --git a/ydb/core/fq/libs/result_formatter/CMakeLists.windows-x86_64.txt b/ydb/core/fq/libs/result_formatter/CMakeLists.windows-x86_64.txt index c0cf7c0ddd..37994c7c35 100644 --- a/ydb/core/fq/libs/result_formatter/CMakeLists.windows-x86_64.txt +++ b/ydb/core/fq/libs/result_formatter/CMakeLists.windows-x86_64.txt @@ -17,7 +17,7 @@ target_link_libraries(fq-libs-result_formatter PUBLIC yutil library-cpp-json cpp-json-yson - ydb-core-engine + ydb-library-mkql_proto library-yql-ast minikql-computation-llvm yql-public-udf diff --git a/ydb/core/fq/libs/result_formatter/result_formatter.cpp b/ydb/core/fq/libs/result_formatter/result_formatter.cpp index 18b6165f3c..12112702f6 100644 --- a/ydb/core/fq/libs/result_formatter/result_formatter.cpp +++ b/ydb/core/fq/libs/result_formatter/result_formatter.cpp @@ -11,7 +11,6 @@ #include <ydb/library/yql/minikql/mkql_node.h> #include <ydb/library/yql/minikql/computation/mkql_computation_node_holders.h> -#include <ydb/core/engine/mkql_proto.h> #include <ydb/public/sdk/cpp/client/ydb_proto/accessor.h> #include <library/cpp/json/yson/json2yson.h> diff --git a/ydb/core/fq/libs/result_formatter/ya.make b/ydb/core/fq/libs/result_formatter/ya.make index 3dd49e4354..4321fe555c 100644 --- a/ydb/core/fq/libs/result_formatter/ya.make +++ b/ydb/core/fq/libs/result_formatter/ya.make @@ -7,7 +7,7 @@ SRCS( PEERDIR( library/cpp/json library/cpp/json/yson - ydb/core/engine + ydb/library/mkql_proto ydb/library/yql/ast ydb/library/yql/minikql/computation/llvm ydb/library/yql/public/udf |