~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-12-18 18:24:57 UTC
  • mfrom: (1999.6.3 trunk)
  • Revision ID: brian@tangent.org-20101218182457-yi1wd0so2hml1k1w
Merge in Lee's copyright header fix

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