diff options
Diffstat (limited to 'sql/ha_archive.cc')
-rw-r--r-- | sql/ha_archive.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_archive.cc b/sql/ha_archive.cc index bc3c819c4ed..189c5facfab 100644 --- a/sql/ha_archive.cc +++ b/sql/ha_archive.cc @@ -1115,7 +1115,7 @@ THR_LOCK_DATA **ha_archive::store_lock(THD *thd, /* Hints for optimizer, see ha_tina for more information */ -void ha_archive::info(uint flag) +int ha_archive::info(uint flag) { DBUG_ENTER("ha_archive::info"); /* @@ -1140,7 +1140,7 @@ void ha_archive::info(uint flag) delete_length= 0; index_file_length=0; - DBUG_VOID_RETURN; + DBUG_RETURN(0); } |