Fix print vectorized rows core when row is skipped
This commit is contained in:
@ -143,7 +143,8 @@ int ObDASExtraData::get_next_rows(int64_t &count, int64_t capacity)
|
||||
}
|
||||
} else {
|
||||
got_row = true;
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, *eval_ctx_, *output_exprs_, count, KR(ret));
|
||||
const ObBitVector *skip = NULL;
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, *eval_ctx_, *output_exprs_, count, skip, KR(ret));
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
|
||||
@ -627,7 +627,8 @@ int ObDASScanOp::fill_task_result(ObIDASTaskResult &task_result, bool &has_more,
|
||||
}
|
||||
}
|
||||
if (OB_SUCC(ret) && has_more) {
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, eval_ctx, result_output, remain_row_cnt_,
|
||||
const ObBitVector *skip = NULL;
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, eval_ctx, result_output, remain_row_cnt_, skip,
|
||||
K(simulate_row_cnt), K(datum_store.get_row_cnt()),
|
||||
K(has_more));
|
||||
}
|
||||
@ -806,7 +807,8 @@ int ObDASScanResult::get_next_rows(int64_t &count, int64_t capacity)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, *eval_ctx_, *output_exprs_, count);
|
||||
const ObBitVector *skip = NULL;
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, *eval_ctx_, *output_exprs_, count, skip);
|
||||
}
|
||||
LOG_DEBUG("das result next rows", K(enable_rich_format_), K(count), K(capacity), K(ret));
|
||||
return ret;
|
||||
|
||||
@ -285,7 +285,8 @@ int ObGroupScanIter::get_next_rows(int64_t &count, int64_t capacity)
|
||||
}
|
||||
}
|
||||
if (OB_SUCC(ret)) {
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, *row_store_.eval_ctx_, *row_store_.exprs_, storage_count);
|
||||
const ObBitVector *skip = NULL;
|
||||
PRINT_VECTORIZED_ROWS(SQL, DEBUG, *row_store_.eval_ctx_, *row_store_.exprs_, storage_count, skip);
|
||||
ObDatum *group_idx_batch = group_id_expr_->locate_batch_datums(*row_store_.eval_ctx_);
|
||||
int64_t i = 0;
|
||||
for (i = 0; i < storage_count; i++) {
|
||||
|
||||
Reference in New Issue
Block a user