~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-03-27 22:55:28 UTC
  • mto: This revision was merged to the branch mainline in revision 968.
  • Revision ID: brian@tangent.org-20090327225528-8y76cfx8a4oemqv9
Remove ref_count

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