1 /*****************************************************************************
2 
3 Copyright (c) 1996, 2012, Oracle and/or its affiliates. All Rights Reserved.
4 
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License, version 2.0,
7 as published by the Free Software Foundation.
8 
9 This program is also distributed with certain software (including
10 but not limited to OpenSSL) that is licensed under separate terms,
11 as designated in a particular file or component or in included license
12 documentation.  The authors of MySQL hereby grant you an additional
13 permission to link the program and your derivative works with the
14 separately licensed software that they have included with MySQL.
15 
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 GNU General Public License, version 2.0, for more details.
20 
21 You should have received a copy of the GNU General Public License along with
22 this program; if not, write to the Free Software Foundation, Inc.,
23 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
24 
25 *****************************************************************************/
26 
27 /**************************************************//**
28 @file include/row0types.h
29 Row operation global types
30 
31 Created 12/27/1996 Heikki Tuuri
32 *******************************************************/
33 
34 #ifndef row0types_h
35 #define row0types_h
36 
37 struct plan_t;
38 
39 struct upd_t;
40 struct upd_field_t;
41 struct upd_node_t;
42 struct del_node_t;
43 struct ins_node_t;
44 struct sel_node_t;
45 struct open_node_t;
46 struct fetch_node_t;
47 
48 struct row_printf_node_t;
49 struct sel_buf_t;
50 
51 struct undo_node_t;
52 
53 struct purge_node_t;
54 
55 struct row_ext_t;
56 
57 /** Buffer for logging modifications during online index creation */
58 struct row_log_t;
59 
60 /* MySQL data types */
61 struct TABLE;
62 
63 #endif
64