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

« back to all changes in this revision

Viewing changes to storage/innobase/include/row0umod.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
Undo modify of a row
 
3
 
 
4
(c) 1997 Innobase Oy
 
5
 
 
6
Created 2/27/1997 Heikki Tuuri
 
7
*******************************************************/
 
8
 
 
9
#ifndef row0umod_h
 
10
#define row0umod_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 modify operation on a row of a table. */
 
22
 
 
23
ulint
 
24
row_undo_mod(
 
25
/*=========*/
 
26
                                /* out: DB_SUCCESS or error code */
 
27
        undo_node_t*    node,   /* in: row undo node */
 
28
        que_thr_t*      thr);   /* in: query thread */
 
29
 
 
30
 
 
31
#ifndef UNIV_NONINL
 
32
#include "row0umod.ic"
 
33
#endif
 
34
 
 
35
#endif