Tracepoint: Add trace point to test NLJ and SPF batch rescan

This commit is contained in:
obdev
2023-12-22 15:42:36 +00:00
committed by ob-robot
parent 9076dadcd4
commit abef1a89a4
5 changed files with 55 additions and 4 deletions

View File

@ -141,6 +141,9 @@ int ObGroupJoinBufffer::init(ObOperator *op,
} else if (OB_UNLIKELY(op->get_child_cnt() < 2)) {
ret = OB_INVALID_ARGUMENT;
LOG_WARN("op should have at least 2 children", KR(ret), K(op->get_child_cnt()));
} else if (max_group_size < group_scan_size) {
ret = OB_INVALID_ARGUMENT;
LOG_WARN("max group size is less than group scan size", K(max_group_size), K(group_scan_size));
} else {
op_ = op;
spec_ = &op_->get_spec();