summaryrefslogtreecommitdiff
path: root/innobase/include/pars0pars.h
diff options
context:
space:
mode:
authorunknown <marko@hundin.mysql.fi>2004-03-31 10:30:14 +0300
committerunknown <marko@hundin.mysql.fi>2004-03-31 10:30:14 +0300
commit4050e916c99293b0e0c6ada33054d2cbbcb0efba (patch)
tree09b400115844ab4e220f1023f1f1fb05e9ef026d /innobase/include/pars0pars.h
parent7945ea24bf9a9f52dd83f788c4e942972b23765c (diff)
downloadmariadb-git-4050e916c99293b0e0c6ada33054d2cbbcb0efba.tar.gz
InnoDB: Remove unnecessary code, mostly related to stored procedures
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
Diffstat (limited to 'innobase/include/pars0pars.h')
-rw-r--r--innobase/include/pars0pars.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/innobase/include/pars0pars.h b/innobase/include/pars0pars.h
index 8ff226ebbd0..cad0942eeb1 100644
--- a/innobase/include/pars0pars.h
+++ b/innobase/include/pars0pars.h
@@ -456,18 +456,6 @@ struct proc_node_struct{
sym_node_t* param_list; /* input and output parameters */
que_node_t* stat_list; /* statement list */
sym_tab_t* sym_tab; /* symbol table of this procedure */
- dict_proc_t* dict_proc; /* stored procedure node in the
- dictionary cache, if defined */
-};
-
-/* Stored procedure call node */
-struct call_node_struct{
- que_common_t common; /* type: QUE_NODE_CALL */
- sym_node_t* proc_name; /* stored procedure name */
- dict_proc_t* procedure_def; /* pointer to a stored procedure graph
- in the dictionary stored procedure
- cache */
- sym_tab_t* sym_tab; /* symbol table of this query */
};
/* elsif-element node */