[scn] fix failure of mittest after refresh feature scn

This commit is contained in:
obdev
2022-11-28 01:46:42 +00:00
committed by ob-robot
parent 49a02f3304
commit 54b64a7263
1898 changed files with 255804 additions and 280809 deletions

View File

@ -113,16 +113,15 @@ int ObInsertAllStmt::inner_get_relation_exprs(RelExprCheckerBase &expr_checker)
return ret;
}
int ObInsertAllStmt::check_table_be_modified(uint64_t ref_table_id, bool& found) const
bool ObInsertAllStmt::check_table_be_modified(uint64_t ref_table_id) const
{
int ret = OB_SUCCESS;
found = false;
bool found = false;
for (int64_t i = 0; !found && i < table_info_.count(); i++) {
if (NULL != table_info_.at(i) && table_info_.at(i)->ref_table_id_ == ref_table_id) {
found = true;
}
}
return ret;
return found;
}
int ObInsertAllStmt::get_dml_table_infos(ObIArray<ObDmlTableInfo*>& dml_table_info)