diff options
author | unknown <monty@hundin.mysql.fi> | 2001-09-08 11:47:34 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-09-08 11:47:34 +0300 |
commit | 8e9c21de2ba0a41ba81ce14f0c5bbaa2187015b3 (patch) | |
tree | 519c781289c4f4c0769d932057d293ba813f2b8c /mysys/thr_lock.c | |
parent | 0ce7e16ef3b9fbe6aa253ac9cef407710dd250e9 (diff) | |
download | mariadb-git-8e9c21de2ba0a41ba81ce14f0c5bbaa2187015b3.tar.gz |
More debug info
Fix DBUG_ASSERT()
Optimization for BDB tables
Fix for BDB under Win98
Docs/manual.texi:
Removed wrong info
bdb/os_win32/os_rename.c:
Fix for windows 98
configure.in:
Better options for MAC OS X
include/dbug.h:
Fix DBUG_ASSERT()
mysys/thr_lock.c:
More DBUG messages
sql/ha_berkeley.cc:
Use cursor in remove_key
sql/lock.cc:
Fix possible problem when pre-unlocking tables in SELECT
sql/sql_select.cc:
More DBUG messages
sql/violite.c:
Fix DBUG messages
Diffstat (limited to 'mysys/thr_lock.c')
-rw-r--r-- | mysys/thr_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/thr_lock.c b/mysys/thr_lock.c index d2b3960d6b5..10c803378df 100644 --- a/mysys/thr_lock.c +++ b/mysys/thr_lock.c @@ -736,7 +736,7 @@ void thr_unlock(THR_LOCK_DATA *data) data->type == TL_WRITE_ALLOW_WRITE)); else { - DBUG_PRINT("lock",("No locks to free")); + DBUG_PRINT("lock",("No waiting read locks to free")); } } else if (data && |