Skip to content

Commit cb9b9bd

Browse files
try fix build
1 parent 018e426 commit cb9b9bd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ydb/core/tx/schemeshard/schemeshard__init.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4471,8 +4471,8 @@ struct TSchemeShard::TTxInit : public TTransactionBase<TSchemeShard> {
44714471
for (ui64 i = 0; i < count; ++i) {
44724472
Ydb::Table::ChangefeedDescription changefeed;
44734473
Ydb::Topic::DescribeTopicResult topic;
4474-
Y_ABORT_UNLESS(ParseFromStringNoSizeLimit(changefeed, rowset.GetValue<Schema::ImportItems::Changefeeds>())[i]);
4475-
Y_ABORT_UNLESS(ParseFromStringNoSizeLimit(topic, rowset.GetValue<Schema::ImportItems::Topics>())[i]);
4474+
Y_ABORT_UNLESS(ParseFromStringNoSizeLimit(changefeed, rowset.GetValue<Schema::ImportItems::Changefeeds>()[i] ));
4475+
Y_ABORT_UNLESS(ParseFromStringNoSizeLimit(topic, rowset.GetValue<Schema::ImportItems::Topics>()[i] ));
44764476
changefeeds.emplace_back(changefeed, topic);
44774477
}
44784478
item.Changefeeds = std::move(changefeeds);

ydb/core/ydb_convert/table_description.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ void FillChangefeedDescription(Ydb::Table::DescribeTableResult& out,
8989
// in
9090
bool FillChangefeedDescription(NKikimrSchemeOp::TCdcStreamDescription& out,
9191
const Ydb::Table::Changefeed& in, Ydb::StatusIds::StatusCode& status, TString& error);
92+
bool FillChangefeedDescription(NKikimrSchemeOp::TCdcStreamDescription& out,
93+
const Ydb::Table::ChangefeedDescription& in, Ydb::StatusIds::StatusCode& status, TString& error);
9294

9395
// out
9496
void FillTableStats(Ydb::Table::DescribeTableResult& out,

0 commit comments

Comments
 (0)