diff options
author | unknown <pem@mysql.com> | 2003-03-26 12:29:58 +0100 |
---|---|---|
committer | unknown <pem@mysql.com> | 2003-03-26 12:29:58 +0100 |
commit | 3946b8235c6f4dfbb5a1aeefed5b620bf89df34e (patch) | |
tree | 457c34fe3030c8bbfb9f64357cd27f37a4ab6bd8 /sql/sp_pcontext.h | |
parent | fa870804d37c27a69551c9767b9a17224fe495b9 (diff) | |
download | mariadb-git-3946b8235c6f4dfbb5a1aeefed5b620bf89df34e.tar.gz |
Added IF EXISTS to DROP PROCEDURE|FUNCTION.
Changed another unecessary use of Item_string into LEX_STRING (in sp_pcontext).
Docs/sp-implemented.txt:
Added IF EXISTS to DROP PROCEDURE|FUNCTION
mysql-test/r/sp-error.result:
Added IF EXISTS to DROP PROCEDURE|FUNCTION
mysql-test/t/sp-error.test:
Added IF EXISTS to DROP PROCEDURE|FUNCTION
sql/sp_pcontext.cc:
Changed another unecessary use of Item_string into LEX_STRING.
sql/sp_pcontext.h:
Changed another unecessary use of Item_string into LEX_STRING.
sql/sql_parse.cc:
Added IF EXISTS to DROP PROCEDURE|FUNCTION
sql/sql_yacc.yy:
Added IF EXISTS to DROP PROCEDURE|FUNCTION
Diffstat (limited to 'sql/sp_pcontext.h')
-rw-r--r-- | sql/sp_pcontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_pcontext.h b/sql/sp_pcontext.h index 6ab38e77017..c5b0f1d410b 100644 --- a/sql/sp_pcontext.h +++ b/sql/sp_pcontext.h @@ -31,7 +31,7 @@ typedef enum typedef struct { - Item_string *name; + LEX_STRING name; enum enum_field_types type; sp_param_mode_t mode; uint offset; // Offset in current frame |