mirror of
https://github.com/MariaDB/server.git
synced 2025-08-24 14:48:09 +03:00
with plugin-load-add that are already registered at mysql.plugin - issue just one error message, without this extra warning - don't abuse ER_UDF_EXISTS, instead add a proper error message for plugins - report started initialization for each plugin source
19 lines
544 B
Plaintext
19 lines
544 B
Plaintext
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: Plugin 'ARCHIVE' already installed
|
|
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
|