[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

@ -120,10 +120,9 @@ int ObInsertStmt::replace_inner_stmt_expr(const ObIArray<ObRawExpr*> &other_expr
return ret;
}
int ObInsertStmt::check_table_be_modified(uint64_t ref_table_id, bool& is_modified) const
bool ObInsertStmt::check_table_be_modified(uint64_t ref_table_id) const
{
is_modified = table_info_.ref_table_id_ == ref_table_id;
return OB_SUCCESS;
return table_info_.ref_table_id_ == ref_table_id;
}
int64_t ObInsertStmt::to_string(char *buf, const int64_t buf_len) const