aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsabdenovch <sabdenovch@yandex-team.com>2024-10-16 22:13:45 +0300
committersabdenovch <sabdenovch@yandex-team.com>2024-10-16 22:27:05 +0300
commitd3b5041a3d36344242cf419e00b5b15f551e297e (patch)
treefb8cb495b8ad718264e674082937b5caf175d815
parentce7a3274ab6f03c596e7b2c8c9f3f972f9b96170 (diff)
downloadydb-d3b5041a3d36344242cf419e00b5b15f551e297e.tar.gz
Fix MinRowCountPerSubquery options getting lost
commit_hash:9260aa4e245870829fc2040cae423ab4c6891360
-rw-r--r--yt/yt/client/api/rpc_proxy/client_base.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/yt/yt/client/api/rpc_proxy/client_base.cpp b/yt/yt/client/api/rpc_proxy/client_base.cpp
index 6ad3c152b4..266cecd1db 100644
--- a/yt/yt/client/api/rpc_proxy/client_base.cpp
+++ b/yt/yt/client/api/rpc_proxy/client_base.cpp
@@ -1046,6 +1046,7 @@ TFuture<TSelectRowsResult> TClientBase::SelectRows(
}
req->set_range_expansion_limit(options.RangeExpansionLimit);
req->set_max_subqueries(options.MaxSubqueries);
+ req->set_min_row_count_per_subquery(options.MinRowCountPerSubquery);
req->set_allow_full_scan(options.AllowFullScan);
req->set_allow_join_without_index(options.AllowJoinWithoutIndex);