[FEAT MERGE]优化器技改patch到432
Co-authored-by: jingtaoye35 <1255153887@qq.com> Co-authored-by: qingzhu521 <q15000557748@gmail.com> Co-authored-by: akaError <lzg020616@163.com>
This commit is contained in:
@ -535,3 +535,14 @@ int ObLogSort::is_my_fixed_expr(const ObRawExpr *expr, bool &is_fixed)
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
int ObLogSort::check_use_child_ordering(bool &used, int64_t &inherit_child_ordering_index)
|
||||
{
|
||||
int ret = OB_SUCCESS;
|
||||
used = true;
|
||||
inherit_child_ordering_index = -1;
|
||||
if (!is_prefix_sort() && !is_local_merge_sort()) {
|
||||
used = false;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user