[FEAT MERGE] [435] sql execution improvements

Co-authored-by: GongYusen <986957406@qq.com>
Co-authored-by: Zach41 <zach_41@163.com>
Co-authored-by: Cai-Yao <729673078@qq.com>
This commit is contained in:
obdev
2024-11-22 06:15:08 +00:00
committed by ob-robot
parent 70b0e56434
commit eed772ed73
252 changed files with 19773 additions and 4468 deletions

View File

@ -90,7 +90,7 @@ int ObWindowFunctionOpInput::sync_wait(
} else if (OB_ISNULL(whole_msg_provider)) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("unexpected status: whole_msg_provider is null", K(ret));
} else if (!whole_msg_provider->msg_set()) {
} else if (!whole_msg_provider->whole_msg_set()) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("unexpected status: whole_msg_provider has not been set msg", K(ret));
} else {
@ -129,7 +129,7 @@ int ObWindowFunctionOpInput::sync_wait(
} // end while
if (OB_SUCC(ret)) {
ObSpinLockGuard guard(shared_info->lock_);
if (whole_msg_provider->msg_set()) {
if (whole_msg_provider->whole_msg_set()) {
whole_msg_provider->reset();
//ATOMIC_SET(&sync_cnt, 0);
}