summaryrefslogtreecommitdiff
path: root/sql/handler.cc
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2001-01-19 04:57:29 +0200
committermonty@donna.mysql.com <>2001-01-19 04:57:29 +0200
commit038fe2fc5c8b9f3f41782e8194b37850095b4e5c (patch)
treee6062d0caaa582f6d8fee0a4660b1e970681da48 /sql/handler.cc
parentee3e0a983008931cd064364ee7b7e8a9c29073a9 (diff)
downloadmariadb-git-038fe2fc5c8b9f3f41782e8194b37850095b4e5c.tar.gz
Added MYSQL_SERVER_SUFFIX to mysqld
Fixed bug in TRIM changed strnmov -> strmake
Diffstat (limited to 'sql/handler.cc')
-rw-r--r--sql/handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.cc b/sql/handler.cc
index affd9df8f87..3859f496f9a 100644
--- a/sql/handler.cc
+++ b/sql/handler.cc
@@ -375,8 +375,8 @@ int handler::ha_open(const char *name, int mode, int test_if_locked)
{
int error;
DBUG_ENTER("handler::open");
- DBUG_PRINT("enter",("db_type: %d db_stat: %d mode: %d lock_test: %d",
- table->db_type, table->db_stat, mode, test_if_locked));
+ DBUG_PRINT("enter",("name: %s db_type: %d db_stat: %d mode: %d lock_test: %d",
+ name, table->db_type, table->db_stat, mode, test_if_locked));
if ((error=open(name,mode,test_if_locked)))
{