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 {
17
17
Done = 4 ,
18
18
Cancellation = 5 ,
19
19
Cancelled = 6 ,
20
+ CreateChangefeeds = 7 ,
20
21
21
22
Unknown = std::numeric_limits<int >::max(),
22
23
};
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ message ImportProgress {
19
19
PROGRESS_DONE = 4 ;
20
20
PROGRESS_CANCELLATION = 5 ;
21
21
PROGRESS_CANCELLED = 6 ;
22
+ PROGRESS_CREATE_CHANGEFEEDS = 7 ;
22
23
}
23
24
}
24
25
Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ NImport::EImportProgress TProtoAccessor::FromProto(Ydb::Import::ImportProgress::
124
124
return NImport::EImportProgress::TransferData;
125
125
case Ydb::Import::ImportProgress::PROGRESS_BUILD_INDEXES:
126
126
return NImport::EImportProgress::BuildIndexes;
127
+ case Ydb::Import::ImportProgress::PROGRESS_CREATE_CHANGEFEEDS:
128
+ return NImport::EImportProgress::CreateChangefeeds;
127
129
case Ydb::Import::ImportProgress::PROGRESS_DONE:
128
130
return NImport::EImportProgress::Done;
129
131
case Ydb::Import::ImportProgress::PROGRESS_CANCELLATION:
You can’t perform that action at this time.
0 commit comments