mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Added Innobase to source distribution
Docs/manual.texi: Added Innobase documentation configure.in: Incremented version include/my_base.h: Added option for Innobase myisam/mi_check.c: cleanup mysql-test/t/bdb.test: cleanup mysql-test/t/innobase.test: Extended with new tests from bdb.test mysql-test/t/merge.test: Added test of SHOW create mysys/my_init.c: Fix for UNIXWARE 7 scripts/mysql_install_db.sh: Always write how to start mysqld scripts/safe_mysqld.sh: Fixed type sql/ha_innobase.cc: Update to new version sql/ha_innobase.h: Update to new version sql/handler.h: Added 'update_table_comment()' and 'append_create_info()' sql/sql_delete.cc: Fixes for Innobase sql/sql_select.cc: Fixes for Innobase sql/sql_show.cc: Append create information (for MERGE tables) sql/sql_update.cc: Fixes for Innobase
This commit is contained in:
37
innobase/include/row0types.h
Normal file
37
innobase/include/row0types.h
Normal file
@ -0,0 +1,37 @@
|
||||
/******************************************************
|
||||
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;
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user