summaryrefslogtreecommitdiff
path: root/storage/example
diff options
context:
space:
mode:
authorunknown <svoj@april.(none)>2007-03-31 17:29:40 +0500
committerunknown <svoj@april.(none)>2007-03-31 17:29:40 +0500
commitb8c217e6d92f2af05e85ce432ec4e577cfaa8908 (patch)
treef360ebbf99cea87831c4fa0f78d5b922ccc42f28 /storage/example
parentcf465f7eca90a0e301f7b2bdc0e093787bc4acdc (diff)
parent55b096b8f054ec5b68630e6822a8a311a1a4da4d (diff)
downloadmariadb-git-b8c217e6d92f2af05e85ce432ec4e577cfaa8908.tar.gz
Merge mysql.com:/home/svoj/devel/bk/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG26138/mysql-5.1-engines sql/handler.h: Auto merged sql/sql_table.cc: Auto merged storage/archive/ha_archive.cc: SCCS merged mysql-test/r/archive.result: Manually merged. mysql-test/t/archive.test: Manually merged. storage/example/ha_example.cc: Manually merged.
Diffstat (limited to 'storage/example')
-rw-r--r--storage/example/ha_example.cc6
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