1
by brian
clean slate |
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
|