fix generated recursive union all plan bug using the distributed join method hint

This commit is contained in:
chimyue
2024-02-06 05:42:10 +00:00
committed by ob-robot
parent 56a69bfe76
commit 5be370fa7b
4 changed files with 42 additions and 32 deletions

View File

@ -2008,6 +2008,15 @@ int ObLogPlanHint::check_status() const
return ret;
}
bool ObLogPlanHint::is_spm_evolution() const
{
bool bret = false;
#ifdef OB_BUILD_SPM
bret = is_spm_evolution_;
#endif
return bret;
}
int LogLeadingHint::init_leading_info(const ObDMLStmt &stmt,
const ObQueryHint &query_hint,
const ObHint *hint)