Skip to content

Commit 2669af6

Browse files
authored
Revert "Remove ut_osiris -> yt gateway dependence via tx_proxy (#2976)" (#3019)
This reverts commit 0b19900
1 parent bec27f9 commit 2669af6

23 files changed

+17
-33
lines changed

ydb/core/grpc_services/rpc_load_rows.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "service_table.h"
55
#include "audit_dml_operations.h"
66

7-
#include <ydb/core/tx/tx_proxy/upload_rows/upload_rows_common_impl.h>
7+
#include <ydb/core/tx/tx_proxy/upload_rows_common_impl.h>
88
#include <ydb/core/ydb_convert/ydb_convert.h>
99

1010
#include <ydb/library/yql/public/udf/udf_types.h>

ydb/core/grpc_services/rpc_read_rows.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <ydb/core/kqp/executer_actor/kqp_executer_stats.h>
88
#include <ydb/core/scheme/scheme_tabledefs.h>
99
#include <ydb/core/tx/schemeshard/schemeshard.h>
10-
#include <ydb/core/tx/tx_proxy/upload_rows/upload_rows_common_impl.h>
10+
#include <ydb/core/tx/tx_proxy/upload_rows_common_impl.h>
1111
#include <ydb/core/ydb_convert/ydb_convert.h>
1212

1313
#include <ydb/library/yql/parser/pg_wrapper/interface/type_desc.h>

ydb/core/kqp/executer_actor/kqp_executer.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include <ydb/core/kqp/query_data/kqp_query_data.h>
77
#include <ydb/core/kqp/gateway/kqp_gateway.h>
88
#include <ydb/core/kqp/counters/kqp_counters.h>
9+
#include <ydb/core/kqp/federated_query/kqp_federated_query_helpers.h>
910
#include <ydb/core/tx/long_tx_service/public/lock_handle.h>
1011
#include <ydb/library/yql/dq/actors/compute/dq_compute_actor_async_io_factory.h>
1112
#include <ydb/core/protos/table_service_config.pb.h>
@@ -94,8 +95,6 @@ struct TEvKqpExecuter {
9495
};
9596
};
9697

97-
struct TKqpFederatedQuerySetup;
98-
9998
IActor* CreateKqpExecuter(IKqpGateway::TExecPhysicalRequest&& request, const TString& database,
10099
const TIntrusiveConstPtr<NACLib::TUserToken>& userToken, TKqpRequestCounters::TPtr counters,
101100
const NKikimrConfig::TTableServiceConfig::TAggregationConfig& aggregation,

ydb/core/kqp/ut/data/kqp_read_null_ut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <ydb/core/testlib/test_client.h>
66
#include <ydb/core/tx/schemeshard/schemeshard.h>
77
#include <ydb/core/tx/tx_proxy/proxy.h>
8-
#include <ydb/core/tx/tx_proxy/upload_rows/upload_rows.h>
8+
#include <ydb/core/tx/tx_proxy/upload_rows.h>
99

1010
#include <library/cpp/testing/unittest/registar.h>
1111

ydb/core/tx/datashard/build_index.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <ydb/core/kqp/common/kqp_types.h>
1111

1212
#include <ydb/core/tx/tx_proxy/proxy.h>
13-
#include <ydb/core/tx/tx_proxy/upload_rows/upload_rows.h>
13+
#include <ydb/core/tx/tx_proxy/upload_rows.h>
1414

1515
#include <ydb/library/yql/public/issue/yql_issue_message.h>
1616

ydb/core/tx/datashard/datashard_ut_build_index.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <ydb/core/testlib/test_client.h>
66
#include <ydb/core/tx/schemeshard/schemeshard.h>
77
#include <ydb/core/tx/tx_proxy/proxy.h>
8+
#include <ydb/core/tx/tx_proxy/upload_rows.h>
89

910
#include <ydb/library/yql/public/issue/yql_issue_message.h>
1011

ydb/core/tx/datashard/datashard_ut_snapshot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <ydb/core/formats/factory.h>
66
#include <ydb/core/tx/long_tx_service/public/lock_handle.h>
77
#include <ydb/core/tx/tx_proxy/proxy.h>
8-
#include <ydb/core/tx/tx_proxy/upload_rows/upload_rows.h>
8+
#include <ydb/core/tx/tx_proxy/upload_rows.h>
99

1010
#include <ydb/core/kqp/ut/common/kqp_ut_common.h> // Y_UNIT_TEST_(TWIN|QUAD)
1111
#include <ydb/core/mind/local.h>

ydb/core/tx/datashard/datashard_ut_trace.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#include <ydb/core/tx/datashard/ut_common/datashard_ut_common.h>
88
#include <ydb/core/tx/schemeshard/schemeshard.h>
99
#include <ydb/core/tx/tx_proxy/proxy.h>
10+
#include <ydb/core/tx/tx_proxy/upload_rows.h>
1011
#include <ydb/library/actors/wilson/test_util/fake_wilson_uploader.h>
1112

1213
#include <library/cpp/testing/unittest/registar.h>

ydb/core/tx/datashard/datashard_ut_upload_rows.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <ydb/core/testlib/test_client.h>
77
#include <ydb/core/tx/schemeshard/schemeshard.h>
88
#include <ydb/core/tx/tx_proxy/proxy.h>
9-
#include <ydb/core/tx/tx_proxy/upload_rows/upload_rows.h>
9+
#include <ydb/core/tx/tx_proxy/upload_rows.h>
1010

1111
#include <library/cpp/testing/unittest/registar.h>
1212

ydb/core/tx/datashard/ut_common/datashard_ut_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include <ydb/core/tx/data_events/payload_helper.h>
1313
#include <ydb/core/tx/tx_allocator/txallocator.h>
1414
#include <ydb/core/tx/tx_proxy/proxy.h>
15-
#include <ydb/core/tx/tx_proxy/upload_rows/upload_rows.h>
15+
#include <ydb/core/tx/tx_proxy/upload_rows.h>
1616
#include <ydb/core/tx/schemeshard/schemeshard_build_index.h>
1717
#include <ydb/core/protos/follower_group.pb.h>
1818
#include <ydb/public/sdk/cpp/client/ydb_result/result.h>

0 commit comments

Comments
 (0)