mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
c4e548cec0
This will be needed for fixing Bug #22496. REC_MAX_INDEX_COL_LEN: New constant, copied from DICT_MAX_INDEX_COL_LEN. row_ext_create(), row_ext_lookup(), row_ext_lookup_low(): New functions.
39 lines
865 B
C
39 lines
865 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;
|
|
|
|
#endif
|