summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam_icp_notembedded.result
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/r/myisam_icp_notembedded.result
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/r/myisam_icp_notembedded.result')
-rw-r--r--mysql-test/r/myisam_icp_notembedded.result22
1 files changed, 0 insertions, 22 deletions
diff --git a/mysql-test/r/myisam_icp_notembedded.result b/mysql-test/r/myisam_icp_notembedded.result
deleted file mode 100644
index 789259d62f1..00000000000
--- a/mysql-test/r/myisam_icp_notembedded.result
+++ /dev/null
@@ -1,22 +0,0 @@
-drop table if exists t1,t2;
-set @myisam_icp_notembedded_tmp=@@optimizer_switch;
-set optimizer_switch='mrr=on,mrr_sort_keys=on,index_condition_pushdown=on';
-#
-# BUG#933412: Server crashes in _mi_put_key_in_record on KILL QUERY with ICP, STRAIGHT_JOIN
-#
-CREATE TABLE t1 (
-b INT,
-c VARCHAR(1) NOT NULL,
-d DATETIME,
-KEY (c, b)
-) ENGINE=MyISAM;
-# INSERT some data
-CREATE TABLE t2 ( a INT ) ENGINE=MyISAM;
-INSERT INTO t2 VALUES
-(7),(3),(7),(3);
-connect con2,127.0.0.1,root,,test;
-# Now run a number of ICP queries while trying to kill them
-disconnect con2;
-connection default;
-DROP TABLE t1,t2;
-set optimizer_switch=@myisam_icp_notembedded_tmp;