aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspuchin <spuchin@ydb.tech>2022-07-25 01:41:26 +0300
committerspuchin <spuchin@ydb.tech>2022-07-25 01:41:26 +0300
commit60dc44e6395c24db9a211c04ea2e133c11af59e2 (patch)
treee981a52f9c6f3725b3cbdd7e4c51c205669269eb
parent32a62717be395a3bbeacf6e936f4755bf3d14640 (diff)
downloadydb-60dc44e6395c24db9a211c04ea2e133c11af59e2.tar.gz
Fix ExtractItemsLimit from parameter value. ()
-rw-r--r--ydb/core/kqp/executer/kqp_executer_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kqp/executer/kqp_executer_impl.h b/ydb/core/kqp/executer/kqp_executer_impl.h
index 5f84f70ce4f..1f4bb0ca315 100644
--- a/ydb/core/kqp/executer/kqp_executer_impl.h
+++ b/ydb/core/kqp/executer/kqp_executer_impl.h
@@ -476,7 +476,7 @@ protected:
}
case NKqpProto::TKqpPhyValue::kParamValue: {
- itemsLimitParamName = protoItemsLimit.GetParamElementValue().GetParamName();
+ itemsLimitParamName = protoItemsLimit.GetParamValue().GetParamName();
if (!itemsLimitParamName) {
return;
}