summaryrefslogtreecommitdiff
path: root/sql/handler.cc
diff options
context:
space:
mode:
authorunknown <monty@tik.mysql.com>2000-12-15 10:58:17 +0200
committerunknown <monty@tik.mysql.com>2000-12-15 10:58:17 +0200
commite1e7ba756a609f9e78d4cbf8291b7f1859df4425 (patch)
treeaf18dadc582d3cff29172087140d13e2a78fecac /sql/handler.cc
parent6d8a5e9088526f2fb86bf7aaefc7426ee1291afc (diff)
downloadmariadb-git-e1e7ba756a609f9e78d4cbf8291b7f1859df4425.tar.gz
Fixed that LPAD() and RPAD() cuts arguments
New test for string functions Docs/manual.texi: Updated changes for 3.23.29 client/mysqldump.c: Cleanup libmysql/libmysql.c: Fixed possible overflow sql/handler.cc: Fixed typo sql/item_strfunc.cc: Fixed that LPAD() and RPAD() cuts arguments sql/mysqld.cc: Better error message on core dump BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/handler.cc')
-rw-r--r--sql/handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.cc b/sql/handler.cc
index 24bf16b3604..930bfa2ed28 100644
--- a/sql/handler.cc
+++ b/sql/handler.cc
@@ -615,7 +615,7 @@ void handler::print_error(int error, myf errflag)
uint handler::get_dup_key(int error)
{
- DBUG_ENTER("key_error");
+ DBUG_ENTER("get_dup_key");
table->file->errkey = (uint) -1;
if (error == HA_ERR_FOUND_DUPP_KEY || error == HA_ERR_FOUND_DUPP_UNIQUE)
info(HA_STATUS_ERRKEY | HA_STATUS_NO_LOCK);