summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.cc
diff options
context:
space:
mode:
authorunknown <svoj@april.(none)>2006-09-12 18:53:51 +0500
committerunknown <svoj@april.(none)>2006-09-12 18:53:51 +0500
commit8ee5d2f68496e16fa0a655c3eba2ad727fb3f310 (patch)
tree0afe30c464c69e599b936308bb71ea36dbaa385b /sql/ha_myisam.cc
parentd340a67bfbe12fdddcbb7a9340c108ff9c04ad59 (diff)
parentfa1436bf1f87cbe627d42e75b5e84cf7eb40b6b8 (diff)
downloadmariadb-git-8ee5d2f68496e16fa0a655c3eba2ad727fb3f310.tar.gz
Merge april.(none):/home/svoj/devel/bk/mysql-5.0-engines
into april.(none):/home/svoj/devel/mysql/BUG20256/mysql-5.0-push sql/ha_myisam.cc: Auto merged sql/handler.cc: Auto merged sql/handler.h: Auto merged
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r--sql/ha_myisam.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc
index f35d7efce0b..fc3bd3d3b08 100644
--- a/sql/ha_myisam.cc
+++ b/sql/ha_myisam.cc
@@ -169,6 +169,14 @@ ha_myisam::ha_myisam(TABLE *table_arg)
can_enable_indexes(1)
{}
+handler *ha_myisam::clone(MEM_ROOT *mem_root)
+{
+ ha_myisam *new_handler= static_cast <ha_myisam *>(handler::clone(mem_root));
+ if (new_handler)
+ new_handler->file->state= file->state;
+ return new_handler;
+}
+
static const char *ha_myisam_exts[] = {
".MYI",