Skip to content

Commit b6b35e2

Browse files
wz-WillZhengob-robot
authored andcommitted
[bugfix][FTS]fix the main lookup iter of function lookup
1 parent b26973e commit b6b35e2

File tree

2 files changed

+13
-17
lines changed

2 files changed

+13
-17
lines changed

src/sql/das/iter/ob_das_func_data_iter.cpp

+11-17
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ ObDASFuncDataIter::ObDASFuncDataIter()
5151
main_lookup_ls_id_(0),
5252
main_lookup_param_(),
5353
merge_memctx_(),
54-
doc_ids_()
54+
doc_ids_(),
55+
read_count_(0)
5556
{}
5657

5758
ObDASFuncDataIter::~ObDASFuncDataIter()
@@ -158,7 +159,7 @@ int ObDASFuncDataIter::inner_reuse()
158159
int ret = OB_SUCCESS;
159160
doc_ids_.reuse();
160161
read_count_ = 0;
161-
if (main_lookup_iter_) {
162+
if (OB_NOT_NULL(main_lookup_iter_)) {
162163
ObDASScanIter *main_lookup_iter = static_cast<ObDASScanIter *>(main_lookup_iter_);
163164
storage::ObTableScanParam &main_lookup_scan_param = main_lookup_iter->get_scan_param();
164165
if (OB_UNLIKELY(&main_lookup_param_ != &main_lookup_iter->get_scan_param())) {
@@ -204,7 +205,7 @@ int ObDASFuncDataIter::inner_release()
204205
DESTROY_CONTEXT(merge_memctx_);
205206
merge_memctx_ = nullptr;
206207
}
207-
if (main_lookup_iter_) {
208+
if (OB_NOT_NULL(main_lookup_iter_)) {
208209
main_lookup_iter_ = nullptr;
209210
}
210211
for (int64_t i = 0; i < iter_count_; i++) {
@@ -265,35 +266,28 @@ int ObDASFuncDataIter::inner_get_next_rows(int64_t &count, int64_t capacity)
265266
if (OB_ISNULL(tr_merge_iters_)) {
266267
ret = OB_ERR_UNEXPECTED;
267268
LOG_WARN("unexpected error, tr merge iter is nullptr", K(ret));
268-
} else if (main_lookup_iter_) {
269-
int64_t storage_count = 0;
270-
while (OB_SUCC(ret) && main_lookup_count < capacity) {
271-
int64_t need_capacity = capacity - main_lookup_count;
272-
if (OB_FAIL(main_lookup_iter_->get_next_rows(storage_count, need_capacity))) {
269+
} else if (OB_NOT_NULL(main_lookup_iter_)) {
270+
while (OB_SUCC(ret) && main_lookup_count == 0) {
271+
if (OB_FAIL(main_lookup_iter_->get_next_rows(main_lookup_count, capacity))) {
273272
if (OB_ITER_END != ret) {
274273
LOG_WARN("fail to get next row for main lookup table", K(ret), KPC(main_lookup_iter_));
275-
} else if (storage_count > 0) {
276-
main_lookup_count += storage_count;
277274
}
278-
} else {
279-
main_lookup_count += storage_count;
280275
}
281276
}
282277
if (OB_ITER_END == ret) {
283278
ret = OB_SUCCESS;
284279
}
285280
}
286-
if (OB_SUCC(ret) && OB_UNLIKELY(main_lookup_iter_ &&
287-
main_lookup_count != capacity && // case: limit, read once
288-
default_size != main_lookup_count + read_count_)) { // case: limit, read more times
281+
if (OB_SUCC(ret) && OB_UNLIKELY(main_lookup_iter_ && default_size < main_lookup_count + read_count_)) {
289282
ret = OB_ERR_UNEXPECTED;
290283
LOG_WARN("unexpected error, main lookup count is not equal to capacity", K(ret), K(default_size), K(main_lookup_count));
291284
}
292285

293286
int tmp_count = 0;
287+
int tr_merge_capacity = main_lookup_count != 0 ? OB_MIN(capacity, main_lookup_count) : capacity;
294288
for (int64_t i = 0; OB_SUCC(ret) && i < iter_count_; i++) {
295289
tr_merge_count = 0;
296-
if (OB_FAIL(tr_merge_iters_[i]->get_next_rows(tr_merge_count, capacity))) {
290+
if (OB_FAIL(tr_merge_iters_[i]->get_next_rows(tr_merge_count, tr_merge_capacity))) {
297291
if (OB_ITER_END != ret) {
298292
LOG_WARN("fail to get next rows for tr merge iter", K(ret), K(i), KPC(tr_merge_iters_[i]));
299293
} else {
@@ -305,7 +299,7 @@ int ObDASFuncDataIter::inner_get_next_rows(int64_t &count, int64_t capacity)
305299
ret = OB_ERR_UNEXPECTED;
306300
LOG_WARN("unexpected error, tr merge count is not equal to tmp count", K(ret), K(tr_merge_count), K(tmp_count), K(i));
307301
} else if (OB_UNLIKELY(0 != tr_merge_count &&
308-
tr_merge_count != capacity &&
302+
tr_merge_count != tr_merge_capacity &&
309303
tr_merge_count + read_count_ != default_size)) {
310304
ret = OB_ERR_UNEXPECTED;
311305
LOG_WARN("unexpected error, tr merge count is not equal to capacity",

src/sql/das/iter/ob_das_iter_utils.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1478,6 +1478,7 @@ int ObDASIterUtils::create_function_lookup_tree(ObTableScanParam &scan_param,
14781478
ObDASLocalLookupIterParam doc_id_lookup_param;
14791479
doc_id_lookup_param.max_size_ = aux_lookup_rtdef->eval_ctx_->is_vectorized()
14801480
? aux_lookup_rtdef->eval_ctx_->max_batch_size_ : 1;
1481+
doc_id_lookup_param.max_size_ = 1; // TODO: zyx439997 "A temporary solution, to be resolved after FTS4 is merged."
14811482
doc_id_lookup_param.eval_ctx_ = aux_lookup_rtdef->eval_ctx_;
14821483
doc_id_lookup_param.exec_ctx_ = &aux_lookup_rtdef->eval_ctx_->exec_ctx_;
14831484
doc_id_lookup_param.output_ = &aux_lookup_ctdef->result_output_;
@@ -1623,6 +1624,7 @@ int ObDASIterUtils::create_function_lookup_tree(ObTableScanParam &scan_param,
16231624
ObDASCacheLookupIterParam root_lookup_param;
16241625
root_lookup_param.max_size_ = idx_proj_lookup_rtdef->eval_ctx_->is_vectorized()
16251626
? idx_proj_lookup_rtdef->get_rowkey_scan_rtdef()->eval_ctx_->max_batch_size_ : 1;
1627+
root_lookup_param.max_size_ = 1; // TODO: zyx439997 "A temporary solution, to be resolved after FTS4 is merged."
16261628
root_lookup_param.eval_ctx_ = idx_proj_lookup_rtdef->eval_ctx_;
16271629
root_lookup_param.exec_ctx_ = &idx_proj_lookup_rtdef->eval_ctx_->exec_ctx_;
16281630
root_lookup_param.output_ = &idx_proj_lookup_ctdef->result_output_;

0 commit comments

Comments
 (0)