~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to storage/innobase/include/row0uins.h

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************
 
2
Fresh insert undo
 
3
 
 
4
(c) 1996 Innobase Oy
 
5
 
 
6
Created 2/25/1997 Heikki Tuuri
 
7
*******************************************************/
 
8
 
 
9
#ifndef row0uins_h
 
10
#define row0uins_h
 
11
 
 
12
#include "univ.i"
 
13
#include "data0data.h"
 
14
#include "dict0types.h"
 
15
#include "trx0types.h"
 
16
#include "que0types.h"
 
17
#include "row0types.h"
 
18
#include "mtr0mtr.h"
 
19
 
 
20
/***************************************************************
 
21
Undoes a fresh insert of a row to a table. A fresh insert means that
 
22
the same clustered index unique key did not have any record, even delete
 
23
marked, at the time of the insert. */
 
24
 
 
25
ulint
 
26
row_undo_ins(
 
27
/*=========*/
 
28
                                /* out: DB_SUCCESS */
 
29
        undo_node_t*    node);  /* in: row undo node */
 
30
 
 
31
 
 
32
#ifndef UNIV_NONINL
 
33
#include "row0uins.ic"
 
34
#endif
 
35
 
 
36
#endif