diff options
author | dave11ar <dave11ar@yandex-team.com> | 2024-12-04 17:26:48 +0300 |
---|---|---|
committer | dave11ar <dave11ar@yandex-team.com> | 2024-12-04 18:52:25 +0300 |
commit | 26d8821ce01e657094e33deaf20de838134ecbc0 (patch) | |
tree | 4e76275c84bcda9c34bf83562b21501f692989a2 | |
parent | 895d71282e94694e1c770d10fa867413e9189e75 (diff) | |
download | ydb-26d8821ce01e657094e33deaf20de838134ecbc0.tar.gz |
Fix babenko issues
commit_hash:68468dd3182f3f7080124b7589bec484ca4b8680
-rw-r--r-- | yt/yt/client/table_client/versioned_io_options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/table_client/versioned_io_options.cpp b/yt/yt/client/table_client/versioned_io_options.cpp index 040a0463e5..9354b39661 100644 --- a/yt/yt/client/table_client/versioned_io_options.cpp +++ b/yt/yt/client/table_client/versioned_io_options.cpp @@ -46,7 +46,7 @@ void FromProto( NTableClient::TVersionedWriteOptions* options, const NProto::TVersionedWriteOptions& protoOptions) { - options->WriteMode = FromProto<EVersionedIOMode>(protoOptions.write_mode()); + FromProto(&options->WriteMode, protoOptions.write_mode()); } std::optional<TString> GetTimestampColumnOriginalNameOrNull(TStringBuf name) |