summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/suite/tokudb/t/cluster_1829.test
diff options
context:
space:
mode:
Diffstat (limited to 'storage/tokudb/mysql-test/suite/tokudb/t/cluster_1829.test')
-rw-r--r--storage/tokudb/mysql-test/suite/tokudb/t/cluster_1829.test21
1 files changed, 0 insertions, 21 deletions
diff --git a/storage/tokudb/mysql-test/suite/tokudb/t/cluster_1829.test b/storage/tokudb/mysql-test/suite/tokudb/t/cluster_1829.test
deleted file mode 100644
index cd978be271a..00000000000
--- a/storage/tokudb/mysql-test/suite/tokudb/t/cluster_1829.test
+++ /dev/null
@@ -1,21 +0,0 @@
-#--source include/have_tokudb.inc
-SET DEFAULT_STORAGE_ENGINE='tokudb';
-#
-# Bug #22169: Crash with count(distinct)
-#
---echo *** Bug #22169 ***
-
---disable_warnings
-DROP TABLE IF EXISTS z1;
---enable_warnings
-
-create table z1 (a int, b int, c int, d int, e int, clustering key (a));
-
-insert into z1 values (1,1,1,1,1),(7,7,7,7,7),(4,4,4,4,4),(3,3,3,3,3),(5,5,5,5,5),(2,2,2,2,2),(6,6,6,6,6);
-
-explain select * From z1 order by a;
-select * from z1 order by a;
-explain select * From z1 order by a desc;
-select * from z1 order by a desc;
-
-DROP TABLE z1;