diff options
Diffstat (limited to 'storage/xtradb/include/row0uins.h')
-rw-r--r-- | storage/xtradb/include/row0uins.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/storage/xtradb/include/row0uins.h b/storage/xtradb/include/row0uins.h index 16bbbbd0d12..77b071c3a6b 100644 --- a/storage/xtradb/include/row0uins.h +++ b/storage/xtradb/include/row0uins.h @@ -16,7 +16,8 @@ Place, Suite 330, Boston, MA 02111-1307 USA *****************************************************************************/ -/****************************************************** +/**************************************************//** +@file include/row0uins.h Fresh insert undo Created 2/25/1997 Heikki Tuuri @@ -33,18 +34,18 @@ Created 2/25/1997 Heikki Tuuri #include "row0types.h" #include "mtr0mtr.h" -/*************************************************************** +/***********************************************************//** Undoes a fresh insert of a row to a table. A fresh insert means that the same clustered index unique key did not have any record, even delete marked, at the time of the insert. InnoDB is eager in a rollback: if it figures out that an index record will be removed in the purge -anyway, it will remove it in the rollback. */ +anyway, it will remove it in the rollback. +@return DB_SUCCESS */ UNIV_INTERN ulint row_undo_ins( /*=========*/ - /* out: DB_SUCCESS */ - undo_node_t* node); /* in: row undo node */ + undo_node_t* node); /*!< in: row undo node */ #ifndef UNIV_NONINL #include "row0uins.ic" |