mirror of
https://github.com/MariaDB/server.git
synced 2025-07-18 23:03:28 +03:00
innobase/data/data0data.c: Remove unused global variables innobase/dict/dict0dict.c: Remove unused code innobase/dict/dict0mem.c: Remove unnecessary function dict_mem_procedure_create() innobase/include/dict0dict.h: Remove unused code related to stored procedures innobase/include/dict0dict.ic: Remove unnecessary function dict_procedure_get() innobase/include/dict0mem.h: Remove unnecessary code related to stored procedures innobase/include/dict0types.h: Remove dict_proc_t, as procedures are not stored into database innobase/include/pars0pars.h: Remove call_node_struct and references to dict_proc_t, as procedures are not stored into database or called by name innobase/include/pars0sym.h: Remove procedure_def, as procedures are not stored into database innobase/include/pars0types.h: Remove call_node_t, as procedures are not called by name
29 lines
786 B
C
29 lines
786 B
C
/******************************************************
|
|
Data dictionary global types
|
|
|
|
(c) 1996 Innobase Oy
|
|
|
|
Created 1/8/1996 Heikki Tuuri
|
|
*******************************************************/
|
|
|
|
#ifndef dict0types_h
|
|
#define dict0types_h
|
|
|
|
typedef struct dict_sys_struct dict_sys_t;
|
|
typedef struct dict_col_struct dict_col_t;
|
|
typedef struct dict_field_struct dict_field_t;
|
|
typedef struct dict_index_struct dict_index_t;
|
|
typedef struct dict_tree_struct dict_tree_t;
|
|
typedef struct dict_table_struct dict_table_t;
|
|
typedef struct dict_foreign_struct dict_foreign_t;
|
|
|
|
/* A cluster object is a table object with the type field set to
|
|
DICT_CLUSTERED */
|
|
|
|
typedef dict_table_t dict_cluster_t;
|
|
|
|
typedef struct ind_node_struct ind_node_t;
|
|
typedef struct tab_node_struct tab_node_t;
|
|
|
|
#endif
|