summaryrefslogtreecommitdiff
path: root/sql/sp.cc
diff options
context:
space:
mode:
authordlenev@mockturtle.local <>2006-09-29 10:55:03 +0400
committerdlenev@mockturtle.local <>2006-09-29 10:55:03 +0400
commita4ee7ec15368707f87de30e9bb261491a2a95ff0 (patch)
treed8ead16d04f76d57f33c217ab7782d7f850e10f7 /sql/sp.cc
parent3b672c9a3c5c3f2b4fb5dd82300f2e022ca6decb (diff)
parent4aaf7e34ff45f084234b007b68fb4e0f892ca625 (diff)
downloadmariadb-git-a4ee7ec15368707f87de30e9bb261491a2a95ff0.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mockturtle.local:/home/dlenev/src/mysql-5.0-rt-merge
Diffstat (limited to 'sql/sp.cc')
-rw-r--r--sql/sp.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sp.cc b/sql/sp.cc
index 735b7622512..49dbed79fe5 100644
--- a/sql/sp.cc
+++ b/sql/sp.cc
@@ -385,16 +385,16 @@ db_load_routine(THD *thd, int type, sp_name *name, sp_head **sphp,
{
LEX *old_lex= thd->lex, newlex;
String defstr;
- char old_db_buf[NAME_BYTE_LEN+1];
+ char old_db_buf[NAME_LEN+1];
LEX_STRING old_db= { old_db_buf, sizeof(old_db_buf) };
bool dbchanged;
ulong old_sql_mode= thd->variables.sql_mode;
ha_rows old_select_limit= thd->variables.select_limit;
sp_rcontext *old_spcont= thd->spcont;
- char definer_user_name_holder[USERNAME_BYTE_LENGTH + 1];
+ char definer_user_name_holder[USERNAME_LENGTH + 1];
LEX_STRING_WITH_INIT definer_user_name(definer_user_name_holder,
- USERNAME_BYTE_LENGTH);
+ USERNAME_LENGTH);
char definer_host_name_holder[HOSTNAME_LENGTH + 1];
LEX_STRING_WITH_INIT definer_host_name(definer_host_name_holder,
@@ -492,7 +492,7 @@ db_create_routine(THD *thd, int type, sp_head *sp)
int ret;
TABLE *table;
char definer[USER_HOST_BUFF_SIZE];
- char old_db_buf[NAME_BYTE_LEN+1];
+ char old_db_buf[NAME_LEN+1];
LEX_STRING old_db= { old_db_buf, sizeof(old_db_buf) };
bool dbchanged;
DBUG_ENTER("db_create_routine");