diff options
author | Bulat <bulat@ydb.tech> | 2025-03-12 17:17:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-12 17:17:05 +0300 |
commit | 914a5afd5994c1182393d81fca85aedb0b7da9c5 (patch) | |
tree | 23ef4ae6ac3eb315be062e5246aeca06c6637eaf | |
parent | b18de48e7d06b49a0085606d1eb908a91f397558 (diff) | |
download | ydb-914a5afd5994c1182393d81fca85aedb0b7da9c5.tar.gz |
Refactor includes to YDB C++ SDK for schemeshard (#15640)
6 files changed, 9 insertions, 9 deletions
diff --git a/ydb/core/tx/schemeshard/ut_helpers/helpers.cpp b/ydb/core/tx/schemeshard/ut_helpers/helpers.cpp index 75fe745c0c..ce0df0db53 100644 --- a/ydb/core/tx/schemeshard/ut_helpers/helpers.cpp +++ b/ydb/core/tx/schemeshard/ut_helpers/helpers.cpp @@ -18,7 +18,7 @@ #include <ydb/public/api/protos/ydb_export.pb.h> #include <ydb/core/protos/schemeshard/operations.pb.h> #include <ydb/core/protos/auth.pb.h> -#include <ydb-cpp-sdk/client/table/table.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/table/table.h> #include <library/cpp/testing/unittest/registar.h> diff --git a/ydb/core/tx/schemeshard/ut_helpers/test_env.h b/ydb/core/tx/schemeshard/ut_helpers/test_env.h index 3e2f44673f..97c833264f 100644 --- a/ydb/core/tx/schemeshard/ut_helpers/test_env.h +++ b/ydb/core/tx/schemeshard/ut_helpers/test_env.h @@ -14,7 +14,7 @@ #include <ydb/core/protos/follower_group.pb.h> #include <ydb/core/protos/msgbus_kv.pb.h> -#include <ydb-cpp-sdk/client/driver/driver.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/driver/driver.h> #include <functional> diff --git a/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp b/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp index cbc0edf272..80e7a44723 100644 --- a/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp +++ b/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp @@ -5,7 +5,7 @@ #include <ydb/core/tx/schemeshard/ut_helpers/test_with_reboots.h> #include <ydb/core/testlib/tablet_helpers.h> #include <ydb/public/lib/deprecated/kicli/kicli.h> -#include <ydb-cpp-sdk/client/table/table.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/table/table.h> using namespace NKikimr; using namespace NSchemeShard; diff --git a/ydb/core/tx/schemeshard/ut_index_build/ut_index_build.cpp b/ydb/core/tx/schemeshard/ut_index_build/ut_index_build.cpp index 52572b672e..34cf342f84 100644 --- a/ydb/core/tx/schemeshard/ut_index_build/ut_index_build.cpp +++ b/ydb/core/tx/schemeshard/ut_index_build/ut_index_build.cpp @@ -10,7 +10,7 @@ #include <ydb/core/tx/datashard/datashard.h> #include <ydb/core/metering/metering.h> -#include <ydb-cpp-sdk/client/table/table.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/table/table.h> using namespace NKikimr; using namespace NSchemeShard; diff --git a/ydb/core/tx/schemeshard/ut_index_build/ut_vector_index_build.cpp b/ydb/core/tx/schemeshard/ut_index_build/ut_vector_index_build.cpp index 263621f48f..81e2b7ad23 100644 --- a/ydb/core/tx/schemeshard/ut_index_build/ut_vector_index_build.cpp +++ b/ydb/core/tx/schemeshard/ut_index_build/ut_vector_index_build.cpp @@ -8,7 +8,7 @@ #include <ydb/core/tx/datashard/datashard.h> #include <ydb/core/metering/metering.h> -#include <ydb-cpp-sdk/client/table/table.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/table/table.h> using namespace NKikimr; using namespace NSchemeShard; diff --git a/ydb/core/tx/tx_proxy/schemereq_ut.cpp b/ydb/core/tx/tx_proxy/schemereq_ut.cpp index 39542058d3..3e8295a421 100644 --- a/ydb/core/tx/tx_proxy/schemereq_ut.cpp +++ b/ydb/core/tx/tx_proxy/schemereq_ut.cpp @@ -1,9 +1,9 @@ #include <library/cpp/testing/unittest/registar.h> -#include <ydb-cpp-sdk/client/query/client.h> -#include <ydb-cpp-sdk/client/scheme/scheme.h> -#include <ydb-cpp-sdk/client/discovery/discovery.h> -#include <ydb-cpp-sdk/client/driver/driver.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/query/client.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/scheme/scheme.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/discovery/discovery.h> +#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/driver/driver.h> #include <ydb/core/base/path.h> #include <ydb/core/base/storage_pools.h> |