summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/client.cpp
diff options
context:
space:
mode:
authorhiddenpath <[email protected]>2025-04-18 06:14:31 +0300
committerhiddenpath <[email protected]>2025-04-18 06:26:19 +0300
commit794bfc553e78c09c6b275acbf5a71c62c722df1a (patch)
tree56fcdfce774fcba27c5f747ee8fbeff3966ee26b /yt/cpp/mapreduce/client/client.cpp
parent7439a2bee2845a5b8a3b38c42b9cdd03ce6c9b2f (diff)
YT-23616: Dispatch on some dyntable methods
commit_hash:c279c66b6d18c54f7f1794d2a0ba851119dd59c8
Diffstat (limited to 'yt/cpp/mapreduce/client/client.cpp')
-rw-r--r--yt/cpp/mapreduce/client/client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/cpp/mapreduce/client/client.cpp b/yt/cpp/mapreduce/client/client.cpp
index 18c7a3ad5d4..c4bb54d1a7d 100644
--- a/yt/cpp/mapreduce/client/client.cpp
+++ b/yt/cpp/mapreduce/client/client.cpp
@@ -1226,7 +1226,7 @@ void TClient::InsertRows(
RequestWithRetry<void>(
ClientRetryPolicy_->CreatePolicyForGenericRequest(),
[this, &path, &rows, &options] (TMutationId /*mutationId*/) {
- NRawClient::InsertRows(Context_, path, rows, options);
+ RawClient_->InsertRows(path, rows, options);
});
}
@@ -1239,7 +1239,7 @@ void TClient::DeleteRows(
RequestWithRetry<void>(
ClientRetryPolicy_->CreatePolicyForGenericRequest(),
[this, &path, &keys, &options] (TMutationId /*mutationId*/) {
- NRawClient::DeleteRows(Context_, path, keys, options);
+ RawClient_->DeleteRows(path, keys, options);
});
}
@@ -1266,7 +1266,7 @@ TNode::TListType TClient::LookupRows(
return RequestWithRetry<TNode::TListType>(
ClientRetryPolicy_->CreatePolicyForGenericRequest(),
[this, &path, &keys, &options] (TMutationId /*mutationId*/) {
- return NRawClient::LookupRows(Context_, path, keys, options);
+ return RawClient_->LookupRows(path, keys, options);
});
}