Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Not a Bug
-
Affects Version/s: 10.0.8
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
On MySQL 5.6:
MySQL [test]> CREATE TABLE t (c INT) ENGINE=MyISAM; Query OK, 0 rows affected (0.09 sec) MySQL [test]> FLUSH TABLES t FOR EXPORT; ERROR 1031 (HY000): Table storage engine for 't' doesn't have this option
On MariaDB 10.0.8:
MariaDB [test]> CREATE TABLE t (c INT) ENGINE=MyISAM; Query OK, 0 rows affected (0.07 sec) MariaDB [test]> FLUSH TABLES t FOR EXPORT; Query OK, 0 rows affected (0.00 sec)
If FOR EXPORT behaves like in MySQL, an error should be issued...
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
In MariaDB 10.0, MyISAM supports FLUSH .. FOR EXPORT.
/*
Storage engine supports table export using the
FLUSH TABLE <table_list> FOR EXPORT statement
(meaning, after this statement one can copy table files out of the
datadir and later "import" (somehow) in another MariaDB instance)
*/