summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/http_client/raw_requests.cpp
diff options
context:
space:
mode:
authorhiddenpath <[email protected]>2025-04-17 08:31:22 +0300
committerhiddenpath <[email protected]>2025-04-17 08:43:27 +0300
commita2a5a3ce98cd881dd0f1d0d205a353dfa49cbbbb (patch)
tree121d78d049dde39147d81f9b3e66e3d7fabe38f1 /yt/cpp/mapreduce/http_client/raw_requests.cpp
parent9b44be1dd627cdc45103e07c3186eda2a400d8dd (diff)
YT-23616: Add RPC implementation of LookupRows, DeleteRows and InsertRows methods
commit_hash:c71f62e346bef766379d7b3c3ac2933bb96ac543
Diffstat (limited to 'yt/cpp/mapreduce/http_client/raw_requests.cpp')
-rw-r--r--yt/cpp/mapreduce/http_client/raw_requests.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/yt/cpp/mapreduce/http_client/raw_requests.cpp b/yt/cpp/mapreduce/http_client/raw_requests.cpp
index 47c0ea204dd..5d19ea1fb9a 100644
--- a/yt/cpp/mapreduce/http_client/raw_requests.cpp
+++ b/yt/cpp/mapreduce/http_client/raw_requests.cpp
@@ -389,9 +389,7 @@ TNode::TListType LookupRows(
fluent.Item("timeout").Value(static_cast<i64>(options.Timeout_->MilliSeconds()));
})
.Item("keep_missing_rows").Value(options.KeepMissingRows_)
- .DoIf(options.Versioned_.Defined(), [&] (TFluentMap fluent) {
- fluent.Item("versioned").Value(*options.Versioned_);
- })
+ .Item("versioned").Value(options.Versioned_)
.DoIf(options.Columns_.Defined(), [&] (TFluentMap fluent) {
fluent.Item("column_names").Value(*options.Columns_);
})