diff options
author | Michael Widenius <monty@mariadb.org> | 2018-03-09 14:05:35 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-03-29 13:59:44 +0300 |
commit | a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch) | |
tree | 70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/t/blackhole.test | |
parent | ab1941266c59a19703a74b5593cf3f508a5752d7 (diff) | |
download | mariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz |
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/t/blackhole.test')
-rw-r--r-- | mysql-test/t/blackhole.test | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/mysql-test/t/blackhole.test b/mysql-test/t/blackhole.test deleted file mode 100644 index 7f394e0f846..00000000000 --- a/mysql-test/t/blackhole.test +++ /dev/null @@ -1,40 +0,0 @@ -# -# Tests for the BLACKHOLE storage engine -# - ---source include/have_blackhole.inc - ---echo # ---echo # Bug #11880012: INDEX_SUBQUERY, BLACKHOLE, ---echo # HANG IN PREPARING WITH 100% CPU USAGE ---echo # - -CREATE TABLE t1(a INT NOT NULL); -INSERT INTO t1 VALUES (1), (2), (3); -CREATE TABLE t2 (a INT UNSIGNED, b INT, UNIQUE KEY (a, b)) ENGINE=BLACKHOLE; - -SELECT 1 FROM t1 WHERE a = ANY (SELECT a FROM t2); - -DROP TABLE t1, t2; - -# -# Bug#19786309 - CRASH IN UNLOCK TABLES AFTER LOCKING AND TRUNCATING TEMPORARY TABLE. -# -create temporary table t1 (a int) engine=blackhole; -lock table t1 write; -truncate table t1; -select * from t1; -unlock tables; -drop temporary table t1; - ---echo End of 5.5 tests - ---echo # ---echo # Bug#13948247 DIVISION BY 0 IN GET_BEST_DISJUNCT_QUICK WITH FORCE INDEX GROUP BY ---echo # - -CREATE TABLE t1(a INT, b INT, c INT, KEY(c), UNIQUE(a)) ENGINE = BLACKHOLE; -SELECT 0 FROM t1 FORCE INDEX FOR GROUP BY(a) WHERE a = 0 OR b = 0 AND c = 0; -DROP TABLE t1; - ---echo End of 5.6 tests |