diff options
Diffstat (limited to 'sql/ha_isam.cc')
-rw-r--r-- | sql/ha_isam.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_isam.cc b/sql/ha_isam.cc index afa7dffa5f4..34d5440a0f8 100644 --- a/sql/ha_isam.cc +++ b/sql/ha_isam.cc @@ -178,7 +178,7 @@ void ha_isam::position(const byte *record) ha_store_ptr(ref, ref_length, position); } -void ha_isam::info(uint flag) +int ha_isam::info(uint flag) { N_ISAMINFO info; (void) nisam_info(file,&info,flag); @@ -224,6 +224,7 @@ void ha_isam::info(uint flag) } if (flag & HA_STATUS_TIME) update_time = info.update_time; + return 0; } |