diff options
| author | uzhastik <[email protected]> | 2024-06-10 17:28:31 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-10 17:28:31 +0300 |
| commit | cf7550170a6bc62852c3a656e9062248dfc36010 (patch) | |
| tree | 91c57e64af06d143227570310c81c520fcdd6abc | |
| parent | b4e92968b06a6d3946846e304e34a805886b6c0c (diff) | |
init scalar fields in serializer opts (#5352)
| -rw-r--r-- | ydb/core/tx/datashard/change_record_cdc_serializer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/tx/datashard/change_record_cdc_serializer.h b/ydb/core/tx/datashard/change_record_cdc_serializer.h index adff8925a83..ee48bfbf03d 100644 --- a/ydb/core/tx/datashard/change_record_cdc_serializer.h +++ b/ydb/core/tx/datashard/change_record_cdc_serializer.h @@ -21,8 +21,8 @@ public: }; struct TChangeRecordSerializerOpts { - TUserTable::TCdcStream::EFormat StreamFormat; - TUserTable::TCdcStream::EMode StreamMode; + TUserTable::TCdcStream::EFormat StreamFormat = NKikimrSchemeOp::ECdcStreamFormatInvalid; + TUserTable::TCdcStream::EMode StreamMode = NKikimrSchemeOp::ECdcStreamModeInvalid; TString AwsRegion; bool VirtualTimestamps = false; ui64 ShardId = 0; |
