00001 /***************************************************************************** 00002 00003 Copyright (C) 1996, 2010, Innobase Oy. All Rights Reserved. 00004 00005 This program is free software; you can redistribute it and/or modify it under 00006 the terms of the GNU General Public License as published by the Free Software 00007 Foundation; version 2 of the License. 00008 00009 This program is distributed in the hope that it will be useful, but WITHOUT 00010 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00011 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 00012 00013 You should have received a copy of the GNU General Public License along with 00014 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin 00015 St, Fifth Floor, Boston, MA 02110-1301 USA 00016 00017 *****************************************************************************/ 00018 00019 /**************************************************/ 00026 #pragma once 00027 #ifndef row0types_h 00028 #define row0types_h 00029 00030 typedef struct plan_struct plan_t; 00031 00032 typedef struct upd_struct upd_t; 00033 00034 typedef struct upd_field_struct upd_field_t; 00035 00036 typedef struct upd_node_struct upd_node_t; 00037 00038 typedef struct del_node_struct del_node_t; 00039 00040 typedef struct ins_node_struct ins_node_t; 00041 00042 typedef struct sel_node_struct sel_node_t; 00043 00044 typedef struct open_node_struct open_node_t; 00045 00046 typedef struct fetch_node_struct fetch_node_t; 00047 00048 typedef struct row_printf_node_struct row_printf_node_t; 00049 typedef struct sel_buf_struct sel_buf_t; 00050 00051 typedef struct undo_node_struct undo_node_t; 00052 00053 typedef struct purge_node_struct purge_node_t; 00054 00055 typedef struct row_ext_struct row_ext_t; 00056 00057 /* MySQL data types */ 00058 #if defined(BUILD_DRIZZLE) 00059 #if defined(__cplusplus) 00060 namespace drizzled 00061 { 00062 class Table; 00063 } 00064 typedef ::drizzled::Table TABLE; 00065 #else 00066 typedef void TABLE; 00067 #endif 00068 #else 00069 typedef struct st_table TABLE; 00070 #endif 00071 #endif