File tree Expand file tree Collapse file tree 12 files changed +24
-1
lines changed Expand file tree Collapse file tree 12 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 6
6
#include < ydb/library/grpc/server/grpc_request.h>
7
7
#include < ydb/library/grpc/server/grpc_counters.h>
8
8
#include < ydb/library/grpc/server/grpc_async_ctx_base.h>
9
+ #include < ydb/core/protos/node_broker.pb.h>
10
+
11
+ #include < ydb/core/protos/cms.pb.h>
12
+ #include < ydb/core/protos/console_base.pb.h>
9
13
10
14
#include < library/cpp/json/json_writer.h>
11
15
Original file line number Diff line number Diff line change 57
57
#include < ydb/core/protos/alloc.pb.h>
58
58
#include < ydb/core/protos/http_config.pb.h>
59
59
#include < ydb/core/protos/datashard_config.pb.h>
60
+ #include < ydb/core/protos/node_broker.pb.h>
61
+ #include < ydb/core/protos/bootstrap.pb.h>
62
+ #include < ydb/core/protos/stream.pb.h>
63
+ #include < ydb/core/protos/cms.pb.h>
60
64
61
65
#include < ydb/core/mind/local.h>
62
66
#include < ydb/core/mind/tenant_pool.h>
Original file line number Diff line number Diff line change 1
1
#include < ydb/core/protos/console_config.pb.h>
2
2
#include < ydb/core/protos/grpc.pb.h>
3
3
#include < ydb/core/protos/grpc.grpc.pb.h>
4
+ #include < ydb/core/protos/config.pb.h>
5
+ #include < ydb/core/protos/console_base.pb.h>
6
+ #include < ydb/core/protos/table_service_config.pb.h>
7
+ #include < ydb/public/api/protos/ydb_status_codes.pb.h>
8
+
4
9
#include < ydb/core/kqp/tests/tpch/lib/tpch_runner.h>
5
10
#include < ydb/public/lib/yson_value/ydb_yson_value.h>
6
11
Original file line number Diff line number Diff line change 13
13
#include < ydb/public/lib/yson_value/ydb_yson_value.cpp>
14
14
15
15
#include < ydb/library/grpc/client/grpc_client_low.h>
16
+ #include < ydb/core/protos/table_service_config.pb.h>
16
17
#include < library/cpp/json/json_writer.h>
17
18
18
19
#include < util/string/printf.h>
Original file line number Diff line number Diff line change 66
66
#include < ydb/core/kqp/proxy_service/kqp_proxy_service.h>
67
67
#include < ydb/core/kqp/finalize_script_service/kqp_finalize_script_service.h>
68
68
#include < ydb/core/metering/metering.h>
69
+ #include < ydb/core/protos/stream.pb.h>
69
70
#include < ydb/library/services/services.pb.h>
70
71
#include < ydb/core/tablet_flat/tablet_flat_executed.h>
71
72
#include < ydb/core/tx/columnshard/columnshard.h>
Original file line number Diff line number Diff line change 15
15
16
16
#include < ydb/core/tx/data_events/events.h>
17
17
#include < ydb/core/tx/data_events/payload_helper.h>
18
+ #include < ydb/core/protos/query_stats.pb.h>
18
19
19
20
#include < ydb/public/sdk/cpp/client/ydb_result/result.h>
20
21
Original file line number Diff line number Diff line change 3
3
#include < ydb/core/tx/datashard/ut_common/datashard_ut_common.h>
4
4
#include < ydb/core/base/tablet_pipecache.h>
5
5
#include < ydb/core/testlib/actors/block_events.h>
6
+ #include < ydb/core/protos/query_stats.pb.h>
6
7
#include < ydb/core/tx/long_tx_service/public/lock_handle.h>
7
8
#include " datashard_ut_common_kqp.h"
8
9
Original file line number Diff line number Diff line change 4
4
#include < ydb/core/tx/columnshard/hooks/testing/controller.h>
5
5
#include < ydb/core/formats/arrow/arrow_helpers.h>
6
6
#include < ydb/core/formats/arrow/arrow_batch_builder.h>
7
+ #include < ydb/core/protos/table_stats.pb.h>
7
8
8
9
using namespace NKikimr ::NSchemeShard;
9
10
using namespace NKikimr ;
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ static TString ProtoFileNameStripped(const google::protobuf::Descriptor* message
18
18
}
19
19
20
20
TString HeaderFileName (const google::protobuf::Descriptor* message) {
21
- return ProtoFileNameStripped (message).append (" .pb.h" );
21
+ bool use_proto_h = !!getenv (" PROTOC_PLUGINS_LITE_HEADERS" );
22
+ auto name = ProtoFileNameStripped (message);
23
+ return use_proto_h ? name.append (" .proto.h" ) : name.append (" .pb.h" );
22
24
}
23
25
24
26
TString SourceFileName (const google::protobuf::Descriptor* message) {
Original file line number Diff line number Diff line change 2
2
3
3
#include " ydb/core/client/server/grpc_base.h"
4
4
#include < ydb/library/grpc/server/grpc_server.h>
5
+ #include < ydb/public/api/protos/draft/persqueue_error_codes.pb.h>
5
6
#include < library/cpp/string_utils/quote/quote.h>
6
7
#include < util/generic/queue.h>
7
8
You can’t perform that action at this time.
0 commit comments