diff options
author | unknown <holyfoot/hf@hfmain.(none)> | 2007-04-09 11:07:20 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@hfmain.(none)> | 2007-04-09 11:07:20 +0500 |
commit | 43d17730f0cb7c3261c51ad8494c50200f05be3d (patch) | |
tree | 7569ecc2e99dfab7134e64eb56d5aaeaa19f803c /storage | |
parent | a1576f9209993517cfbbc64e3a7d4ba4edb4dbb5 (diff) | |
parent | fde3e9d4af5e32ffb2374fb01950691e175c8bcd (diff) | |
download | mariadb-git-43d17730f0cb7c3261c51ad8494c50200f05be3d.tar.gz |
Merge bk@192.168.21.1:mysql-5.1
into mysql.com:/d2/hf/mrg/mysql-5.1-opt
sql/sql_table.cc:
Auto merged
Diffstat (limited to 'storage')
-rw-r--r-- | storage/example/ha_example.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 999e36a4242..a4cdcafc6d0 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -247,6 +247,12 @@ ha_example::ha_example(handlerton *hton, TABLE_SHARE *table_arg) used by the default rename_table and delete_table method in handler.cc. + For engines that have two file name extentions (separate meta/index file + and data file), the order of elements is relevant. First element of engine + file name extentions array should be meta/index file extention. Second + element - data file extention. This order is assumed by + prepare_for_repair() when REPAIR TABLE ... USE_FRM is issued. + @see rename_table method in handler.cc and delete_table method in handler.cc |