diff options
author | unknown <serg@sergbook.mysql.com> | 2005-08-26 21:33:13 +0400 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2005-08-26 21:33:13 +0400 |
commit | 661f20cb5c9e887325ad98a514dbbf142fc48636 (patch) | |
tree | 27704d17f33924f22e7b2baa3fcdeefd4c351fce /sql/ha_blackhole.cc | |
parent | 9d4a4f38d0fca880c76998e6726ca3887b122632 (diff) | |
download | mariadb-git-661f20cb5c9e887325ad98a514dbbf142fc48636.tar.gz |
bad blind change fixed
Diffstat (limited to 'sql/ha_blackhole.cc')
-rw-r--r-- | sql/ha_blackhole.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/ha_blackhole.cc b/sql/ha_blackhole.cc index aee33cd0704..a287d6e446b 100644 --- a/sql/ha_blackhole.cc +++ b/sql/ha_blackhole.cc @@ -160,6 +160,7 @@ int ha_blackhole::external_lock(THD *thd, int lock_type) uint ha_blackhole::lock_count(void) const { + DBUG_ENTER("ha_blackhole::lock_count"); DBUG_RETURN(0); } @@ -167,7 +168,8 @@ THR_LOCK_DATA **ha_blackhole::store_lock(THD *thd, THR_LOCK_DATA **to, enum thr_lock_type lock_type) { - DEBUG_RETURN(to); + DBUG_ENTER("ha_blackhole::store_lock"); + DBUG_RETURN(to); } |