Skip to content

Commit ff58fd9

Browse files
Import changefeed's configuration from s3 (#13943)
1 parent 8ec2411 commit ff58fd9

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

include/ydb-cpp-sdk/client/import/import.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
};

src/api/protos/ydb_import.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/client/proto/accessor.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)