From f46cc5847d33be6f00358a3718a6c21f24bfff2c Mon Sep 17 00:00:00 2001 From: hy-guo Date: Thu, 19 Oct 2023 08:09:56 +0000 Subject: [PATCH] additional fix for fix subplan stack overflow --- src/sql/engine/subquery/ob_subplan_filter_op.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/engine/subquery/ob_subplan_filter_op.cpp b/src/sql/engine/subquery/ob_subplan_filter_op.cpp index 20c9c22ad..843f50b87 100644 --- a/src/sql/engine/subquery/ob_subplan_filter_op.cpp +++ b/src/sql/engine/subquery/ob_subplan_filter_op.cpp @@ -1133,7 +1133,7 @@ int ObSubPlanFilterOp::inner_get_next_batch(const int64_t max_row_cnt) int ret = OB_SUCCESS; int64_t op_max_batch_size = min(max_row_cnt, MY_SPEC.max_batch_size_); if (need_init_before_get_row_) { - OZ(SMART_CALL(prepare_onetime_exprs())); + OZ(prepare_onetime_exprs()); } //从主表中获取一行数据 clear_evaluated_flag();