From a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Fri, 9 Mar 2018 14:05:35 +0200 Subject: Create 'main' test directory and move 't' and 'r' there --- mysql-test/t/partition_example.test | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 mysql-test/t/partition_example.test (limited to 'mysql-test/t/partition_example.test') diff --git a/mysql-test/t/partition_example.test b/mysql-test/t/partition_example.test deleted file mode 100644 index 8c1b92b2e33..00000000000 --- a/mysql-test/t/partition_example.test +++ /dev/null @@ -1,23 +0,0 @@ ---source include/not_windows_embedded.inc ---source include/have_example_plugin.inc ---source include/have_partition.inc - ---replace_regex /\.dll/.so/ -eval install plugin example soname '$HA_EXAMPLE_SO'; - -create table t1 (a int not null) -engine=example -partition by list (a) -(partition p0 values in (1), partition p1 values in (2)); -show create table t1; -drop table t1; - -create table t1 (a int not null) -engine=example ull=12340 -partition by list (a) -(partition p0 values in (1), partition p1 values in (2)); -show create table t1; -drop table t1; - -select 1; -uninstall plugin example; -- cgit v1.2.1