aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniil Cherednik <dcherednik@ydb.tech>2024-10-07 11:51:44 +0200
committerGitHub <noreply@github.com>2024-10-07 14:51:44 +0500
commit0f615ed21faef47e168c683c816ff3d6d8faa569 (patch)
tree0e1b2bd138151474a84651a8b2a624ea2f90a1c3
parent156ea3a035b02cfe79254f9ce51bc67e5b3d56f3 (diff)
downloadydb-0f615ed21faef47e168c683c816ff3d6d8faa569.tar.gz
do not include "base/base.h" in the kqp public headers (#10120)
-rw-r--r--ydb/core/kqp/common/events/query.h2
-rw-r--r--ydb/core/kqp/common/kqp.h1
-rw-r--r--ydb/core/load_test/events.h1
-rw-r--r--ydb/core/load_test/yql_single_query.cpp2
-rw-r--r--ydb/services/deprecated/persqueue_v0/grpc_pq_clusters_updater_actor.h2
-rw-r--r--ydb/services/persqueue_v1/ut/kqp_mock.h1
6 files changed, 7 insertions, 2 deletions
diff --git a/ydb/core/kqp/common/events/query.h b/ydb/core/kqp/common/events/query.h
index b180f66549..e6799b0331 100644
--- a/ydb/core/kqp/common/events/query.h
+++ b/ydb/core/kqp/common/events/query.h
@@ -3,7 +3,7 @@
#include <ydb/core/protos/kqp.pb.h>
#include <ydb/core/kqp/common/simple/kqp_event_ids.h>
#include <ydb/core/kqp/common/kqp_user_request_context.h>
-#include <ydb/core/grpc_services/base/base.h>
+#include <ydb/core/grpc_services/base/iface.h>
#include <ydb/core/grpc_services/cancelation/cancelation_event.h>
#include <ydb/core/grpc_services/cancelation/cancelation.h>
diff --git a/ydb/core/kqp/common/kqp.h b/ydb/core/kqp/common/kqp.h
index e0bccb2e50..cbb6c0d36f 100644
--- a/ydb/core/kqp/common/kqp.h
+++ b/ydb/core/kqp/common/kqp.h
@@ -12,7 +12,6 @@
#include <library/cpp/lwtrace/shuttle.h>
-#include <ydb/core/grpc_services/base/base.h>
#include <ydb/core/grpc_services/cancelation/cancelation.h>
#include <ydb/core/grpc_services/cancelation/cancelation_event.h>
#include <ydb/core/kqp/counters/kqp_counters.h>
diff --git a/ydb/core/load_test/events.h b/ydb/core/load_test/events.h
index 86e712916e..1595b3abe6 100644
--- a/ydb/core/load_test/events.h
+++ b/ydb/core/load_test/events.h
@@ -2,6 +2,7 @@
#include <ydb/core/protos/kqp.pb.h>
#include <ydb/core/protos/load_test.pb.h>
+#include <ydb/library/services/services.pb.h>
#include <library/cpp/monlib/dynamic_counters/percentile/percentile_lg.h>
#include <library/cpp/json/writer/json_value.h>
diff --git a/ydb/core/load_test/yql_single_query.cpp b/ydb/core/load_test/yql_single_query.cpp
index daeca70332..d4fd8aa786 100644
--- a/ydb/core/load_test/yql_single_query.cpp
+++ b/ydb/core/load_test/yql_single_query.cpp
@@ -5,6 +5,8 @@
#include <ydb/core/kqp/common/kqp.h>
#include <ydb/library/actors/core/actor_bootstrapped.h>
+#include <ydb/library/actors/core/hfunc.h>
+#include <ydb/library/actors/core/log.h>
namespace NKikimr {
diff --git a/ydb/services/deprecated/persqueue_v0/grpc_pq_clusters_updater_actor.h b/ydb/services/deprecated/persqueue_v0/grpc_pq_clusters_updater_actor.h
index 24155a5676..388d730b5d 100644
--- a/ydb/services/deprecated/persqueue_v0/grpc_pq_clusters_updater_actor.h
+++ b/ydb/services/deprecated/persqueue_v0/grpc_pq_clusters_updater_actor.h
@@ -9,6 +9,8 @@
#include <ydb/core/kqp/common/kqp.h>
#include <ydb/core/mind/address_classification/net_classifier.h>
+#include <ydb/library/services/services.pb.h>
+
namespace NKikimr {
namespace NGRpcProxy {
diff --git a/ydb/services/persqueue_v1/ut/kqp_mock.h b/ydb/services/persqueue_v1/ut/kqp_mock.h
index 57f9ed4564..04507cf7ee 100644
--- a/ydb/services/persqueue_v1/ut/kqp_mock.h
+++ b/ydb/services/persqueue_v1/ut/kqp_mock.h
@@ -2,6 +2,7 @@
#include <ydb/core/kqp/common/events/events.h>
#include <ydb/library/actors/core/actor_bootstrapped.h>
+#include <ydb/library/actors/core/hfunc.h>
namespace NKikimr::NPersQueueTests {