summaryrefslogtreecommitdiff
path: root/mysql-test/t/partition_example.test
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2018-03-09 14:05:35 +0200
committerMonty <monty@mariadb.org>2018-03-29 13:59:44 +0300
commita7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch)
tree70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/t/partition_example.test
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/t/partition_example.test')
-rw-r--r--mysql-test/t/partition_example.test23
1 files changed, 0 insertions, 23 deletions
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;