replace ts related to ddl with scn.

This commit is contained in:
obdev
2022-11-28 02:21:13 +00:00
committed by ob-robot
parent bbec6aff49
commit 8a4d14122f
539 changed files with 17685 additions and 173434 deletions

View File

@ -113,15 +113,16 @@ int ObInsertAllStmt::inner_get_relation_exprs(RelExprCheckerBase &expr_checker)
return ret;
}
bool ObInsertAllStmt::check_table_be_modified(uint64_t ref_table_id) const
int ObInsertAllStmt::check_table_be_modified(uint64_t ref_table_id, bool& found) const
{
bool found = false;
int ret = OB_SUCCESS;
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 found;
return ret;
}
int ObInsertAllStmt::get_dml_table_infos(ObIArray<ObDmlTableInfo*>& dml_table_info)