fix late materialization bug

This commit is contained in:
zl0
2021-09-24 19:19:08 +08:00
committed by wangzelin.wzl
parent bda3d4e6c5
commit 16b086a718
36 changed files with 496 additions and 201 deletions

View File

@ -1306,3 +1306,14 @@ int ObLogGroupBy::compute_one_row_info()
}
return ret;
}
int ObLogGroupBy::allocate_startup_expr_post()
{
int ret = OB_SUCCESS;
if (SCALAR_AGGREGATE == algo_) {
// do nothing
} else if (OB_FAIL(ObLogicalOperator::allocate_startup_expr_post())) {
LOG_WARN("failed to allocate startup exprs post", K(ret));
}
return ret;
}