File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
include/ydb-cpp-sdk/client/import Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ enum class EImportProgress {
1717 Done = 4 ,
1818 Cancellation = 5 ,
1919 Cancelled = 6 ,
20+ CreateChangefeeds = 7 ,
2021
2122 Unknown = std::numeric_limits<int >::max(),
2223};
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ message ImportProgress {
1919 PROGRESS_DONE = 4 ;
2020 PROGRESS_CANCELLATION = 5 ;
2121 PROGRESS_CANCELLED = 6 ;
22+ PROGRESS_CREATE_CHANGEFEEDS = 7 ;
2223 }
2324}
2425
Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ NImport::EImportProgress TProtoAccessor::FromProto(Ydb::Import::ImportProgress::
124124 return NImport::EImportProgress::TransferData;
125125 case Ydb::Import::ImportProgress::PROGRESS_BUILD_INDEXES:
126126 return NImport::EImportProgress::BuildIndexes;
127+ case Ydb::Import::ImportProgress::PROGRESS_CREATE_CHANGEFEEDS:
128+ return NImport::EImportProgress::CreateChangefeeds;
127129 case Ydb::Import::ImportProgress::PROGRESS_DONE:
128130 return NImport::EImportProgress::Done;
129131 case Ydb::Import::ImportProgress::PROGRESS_CANCELLATION:
You can’t perform that action at this time.
0 commit comments