mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
eb3b8c3cb7
mysql-test/r/have_dynamic_loading.require: Rename: mysql-test/r/have_udf.require -> mysql-test/r/have_dynamic_loading.require mysql-test/include/have_udf.inc: Rename have_udf.require to hqave_dynamic_loading.require mysql-test/mysql-test-run.pl: Add support for ha_example plugin mysql-test/include/have_example_plugin.inc: New BitKeeper file ``mysql-test/include/have_example_plugin.inc'' mysql-test/r/have_example_plugin.require: New BitKeeper file ``mysql-test/r/have_example_plugin.require'' mysql-test/r/plugin.result: New BitKeeper file ``mysql-test/r/plugin.result'' mysql-test/t/plugin.test: New BitKeeper file ``mysql-test/t/plugin.test''
26 lines
538 B
Text
26 lines
538 B
Text
--source include/have_example_plugin.inc
|
|
|
|
CREATE TABLE t1(a int) ENGINE=EXAMPLE;
|
|
DROP TABLE t1;
|
|
|
|
INSTALL PLUGIN example SONAME 'ha_example.so';
|
|
--error 1125
|
|
INSTALL PLUGIN EXAMPLE SONAME 'ha_example.so';
|
|
|
|
UNINSTALL PLUGIN example;
|
|
|
|
INSTALL PLUGIN example SONAME 'ha_example.so';
|
|
|
|
CREATE TABLE t1(a int) ENGINE=EXAMPLE;
|
|
|
|
# Let's do some advanced ops with the example engine :)
|
|
SELECT * FROM t1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
# Waiting for fix to BUG#22694
|
|
#UNINSTALL PLUGIN example;
|
|
#UNINSTALL PLUGIN EXAMPLE;
|
|
|
|
--error 1305
|
|
UNINSTALL PLUGIN non_exist;
|