2005-10-27 07:29:40 +00:00
|
|
|
/******************************************************
|
|
|
|
Fresh insert undo
|
|
|
|
|
|
|
|
(c) 1996 Innobase Oy
|
|
|
|
|
|
|
|
Created 2/25/1997 Heikki Tuuri
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
#ifndef row0uins_h
|
|
|
|
#define row0uins_h
|
|
|
|
|
|
|
|
#include "univ.i"
|
|
|
|
#include "data0data.h"
|
|
|
|
#include "dict0types.h"
|
|
|
|
#include "trx0types.h"
|
|
|
|
#include "que0types.h"
|
|
|
|
#include "row0types.h"
|
|
|
|
#include "mtr0mtr.h"
|
2006-02-23 19:25:29 +00:00
|
|
|
|
2005-10-27 07:29:40 +00:00
|
|
|
/***************************************************************
|
|
|
|
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
|
2008-11-24 16:01:42 +00:00
|
|
|
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. */
|
2008-02-18 18:38:33 +00:00
|
|
|
UNIV_INTERN
|
2005-10-27 07:29:40 +00:00
|
|
|
ulint
|
|
|
|
row_undo_ins(
|
|
|
|
/*=========*/
|
|
|
|
/* out: DB_SUCCESS */
|
|
|
|
undo_node_t* node); /* in: row undo node */
|
|
|
|
|
|
|
|
#ifndef UNIV_NONINL
|
|
|
|
#include "row0uins.ic"
|
|
|
|
#endif
|
|
|
|
|
2006-02-23 19:25:29 +00:00
|
|
|
#endif
|