summaryrefslogtreecommitdiff
path: root/sql/ha_blackhole.cc
diff options
context:
space:
mode:
authorunknown <serg@sergbook.mysql.com>2005-08-26 21:33:13 +0400
committerunknown <serg@sergbook.mysql.com>2005-08-26 21:33:13 +0400
commita9e984cab597dc9524c03f017ced67dfe28e2647 (patch)
tree27704d17f33924f22e7b2baa3fcdeefd4c351fce /sql/ha_blackhole.cc
parent2cf81e9dc142de0baed968957d022f074b963dd4 (diff)
downloadmariadb-git-a9e984cab597dc9524c03f017ced67dfe28e2647.tar.gz
bad blind change fixed
Diffstat (limited to 'sql/ha_blackhole.cc')
-rw-r--r--sql/ha_blackhole.cc4
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);
}