1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Automerge part of mysql-trunk-bugfixing into mysql-trunk-merge.

This commit is contained in:
Joerg Bruehe
2010-06-21 12:52:03 +02:00
9 changed files with 145 additions and 14 deletions

View File

@ -1 +1 @@
--plugin_dir=../storage/archive/.libs
--plugin_dir=$ARCHIVE_PLUGIN_DIR

View File

@ -1,6 +1,10 @@
--source include/not_windows.inc
--source include/have_archive_plugin.inc
# When running in parallel we get
# Warning 1620 Plugin is busy and will be uninstalled on shutdown
--source include/not_parallel.inc
CREATE TABLE t1(a int) ENGINE=ARCHIVE;
DROP TABLE t1;

View File

@ -1 +1 @@
--plugin_dir=../storage/blackhole/.libs
--plugin_dir=$BLACKHOLE_PLUGIN_DIR

View File

@ -1,6 +1,10 @@
--source include/not_windows.inc
--source include/have_blackhole_plugin.inc
# When running in parallel we get
# Warning 1620 Plugin is busy and will be uninstalled on shutdown
--source include/not_parallel.inc
CREATE TABLE t1(a int) ENGINE=BLACKHOLE;
DROP TABLE t1;