diff options
author | unknown <marko@hundin.mysql.fi> | 2004-03-31 10:30:14 +0300 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-03-31 10:30:14 +0300 |
commit | 4050e916c99293b0e0c6ada33054d2cbbcb0efba (patch) | |
tree | 09b400115844ab4e220f1023f1f1fb05e9ef026d /innobase/data | |
parent | 7945ea24bf9a9f52dd83f788c4e942972b23765c (diff) | |
download | mariadb-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/data')
-rw-r--r-- | innobase/data/data0data.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/innobase/data/data0data.c b/innobase/data/data0data.c index c3c2b135717..96c15643096 100644 --- a/innobase/data/data0data.c +++ b/innobase/data/data0data.c @@ -25,10 +25,6 @@ byte data_error; /* data pointers of tuple fields are initialized ulint data_dummy; /* this is used to fool the compiler in dtuple_validate */ -byte data_buf[8192]; /* used in generating test tuples */ -ulint data_rnd = 756511; - - /* Some non-inlined functions used in the MySQL interface: */ void dfield_set_data_noninline( |