mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
fc65b08f53
Fix some bugs. The tests innodb and innodb-index fail, but that might be due to an old MySQL source tree being used.
41 lines
917 B
C
41 lines
917 B
C
/******************************************************
|
|
Row operation global types
|
|
|
|
(c) 1996 Innobase Oy
|
|
|
|
Created 12/27/1996 Heikki Tuuri
|
|
*******************************************************/
|
|
|
|
#ifndef row0types_h
|
|
#define row0types_h
|
|
|
|
typedef struct plan_struct plan_t;
|
|
|
|
typedef struct upd_struct upd_t;
|
|
|
|
typedef struct upd_field_struct upd_field_t;
|
|
|
|
typedef struct upd_node_struct upd_node_t;
|
|
|
|
typedef struct del_node_struct del_node_t;
|
|
|
|
typedef struct ins_node_struct ins_node_t;
|
|
|
|
typedef struct sel_node_struct sel_node_t;
|
|
|
|
typedef struct open_node_struct open_node_t;
|
|
|
|
typedef struct fetch_node_struct fetch_node_t;
|
|
|
|
typedef struct row_printf_node_struct row_printf_node_t;
|
|
typedef struct sel_buf_struct sel_buf_t;
|
|
|
|
typedef struct undo_node_struct undo_node_t;
|
|
|
|
typedef struct purge_node_struct purge_node_t;
|
|
|
|
typedef struct row_ext_struct row_ext_t;
|
|
|
|
typedef struct row_prebuilt_struct row_prebuilt_t;
|
|
|
|
#endif
|