diff options
author | unknown <pgalbraith@mysql.com> | 2005-08-30 02:46:03 +0200 |
---|---|---|
committer | unknown <pgalbraith@mysql.com> | 2005-08-30 02:46:03 +0200 |
commit | 40cfe1e9cd677a8ff819ae0408d90771bd9982be (patch) | |
tree | 8b0673cab0162cbf467ca2cdfedae55c4514f29e | |
parent | 358c7f336b0e7cc54bd43fe2706396dcfb4c254d (diff) | |
download | mariadb-git-40cfe1e9cd677a8ff819ae0408d90771bd9982be.tar.gz |
ha_blackhole.cc:
Found one more missing DBUG_ENTER. compile-pentium-debug-max does not enable blackhole on 4.1!
sql/ha_blackhole.cc:
Found one more missing DBUG_ENTER. compile-pentium-debug-max does not enable blackhole on 4.1!
-rw-r--r-- | sql/ha_blackhole.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_blackhole.cc b/sql/ha_blackhole.cc index ccfbadf6a91..9ac4ba2da15 100644 --- a/sql/ha_blackhole.cc +++ b/sql/ha_blackhole.cc @@ -126,6 +126,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); } |