mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Created suites for heap, archive and csv.
Moved test from main suite to the new suites. Move tests from maria/t and maria/r to maria mysql-test/mysql-test-run.pl: Added support for the new suites
This commit is contained in:
18
mysql-test/suite/archive/archive_plugin.result
Normal file
18
mysql-test/suite/archive/archive_plugin.result
Normal file
@ -0,0 +1,18 @@
|
||||
CREATE TABLE t1(a int) ENGINE=ARCHIVE;
|
||||
Warnings:
|
||||
Warning 1286 Unknown storage engine 'ARCHIVE'
|
||||
Warning 1266 Using storage engine MyISAM for table 't1'
|
||||
DROP TABLE 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
|
Reference in New Issue
Block a user