You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
531 B
18 lines
531 B
CREATE TABLE t1(a int) ENGINE=ARCHIVE;
|
|
ERROR 42000: Unknown storage engine 'ARCHIVE'
|
|
DROP TABLE IF EXISTS t1;
|
|
Warnings:
|
|
Note 1051 Unknown table 'test.t1'
|
|
INSTALL PLUGIN archive SONAME 'ha_archive.so';
|
|
INSTALL PLUGIN ARCHIVE SONAME 'ha_archive.so';
|
|
ERROR HY000: Function 'ARCHIVE' already exists
|
|
UNINSTALL PLUGIN archive;
|
|
INSTALL PLUGIN archive SONAME 'ha_archive.so';
|
|
CREATE TABLE t1(a int) ENGINE=ARCHIVE;
|
|
DROP TABLE t1;
|
|
SELECT 1;
|
|
1
|
|
1
|
|
UNINSTALL PLUGIN archive;
|
|
UNINSTALL PLUGIN archive;
|
|
ERROR 42000: PLUGIN archive does not exist
|
|
|