1CREATE TABLE t1(a int) ENGINE=ARCHIVE; 2Warnings: 3Warning 1286 Unknown storage engine 'ARCHIVE' 4Warning 1266 Using storage engine MyISAM for table 't1' 5DROP TABLE t1; 6INSTALL PLUGIN archive SONAME 'ha_archive.so'; 7INSTALL PLUGIN ARCHIVE SONAME 'ha_archive.so'; 8ERROR HY000: Function 'ARCHIVE' already exists 9UNINSTALL PLUGIN archive; 10INSTALL PLUGIN archive SONAME 'ha_archive.so'; 11CREATE TABLE t1(a int) ENGINE=ARCHIVE; 12DROP TABLE t1; 13SELECT 1; 141 151 16UNINSTALL PLUGIN archive; 17UNINSTALL PLUGIN archive; 18ERROR 42000: PLUGIN archive does not exist 19