[scn] fix failure of mittest after refresh feature scn
This commit is contained in:
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user