diff options
author | hiddenpath <[email protected]> | 2025-04-18 06:14:31 +0300 |
---|---|---|
committer | hiddenpath <[email protected]> | 2025-04-18 06:26:19 +0300 |
commit | 794bfc553e78c09c6b275acbf5a71c62c722df1a (patch) | |
tree | 56fcdfce774fcba27c5f747ee8fbeff3966ee26b /yt/cpp/mapreduce/client/client.cpp | |
parent | 7439a2bee2845a5b8a3b38c42b9cdd03ce6c9b2f (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.cpp | 6 |
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); }); } |