diff options
author | marko@hundin.mysql.fi <> | 2004-09-17 17:16:02 +0300 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2004-09-17 17:16:02 +0300 |
commit | c03049dfd98c91e5c5e37b8c7ba55279e63d2c71 (patch) | |
tree | f01da54b0ed143737081f0fb95fe28584900f70d /sql | |
parent | 0b6dc4938838c32c51b4c3633551711110229dc4 (diff) | |
download | mariadb-git-c03049dfd98c91e5c5e37b8c7ba55279e63d2c71.tar.gz |
InnoDB: Corrected typos in DBUG_ statements
Diffstat (limited to 'sql')
-rw-r--r-- | sql/ha_innodb.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index b9d898d5bd1..f149af85b3f 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -3049,7 +3049,7 @@ ha_innobase::index_last( { int error; - DBUG_ENTER("index_first"); + DBUG_ENTER("index_last"); statistic_increment(ha_read_last_count, &LOCK_status); error = index_read(buf, NULL, 0, HA_READ_BEFORE_KEY); @@ -4110,7 +4110,7 @@ ha_innobase::info( if (srv_force_recovery >= SRV_FORCE_NO_IBUF_MERGE) { - return; + DBUG_VOID_RETURN; } /* We do not know if MySQL can call this function before calling |