~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

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