summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam_icp_notembedded.result
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2012-02-22 17:38:24 +0400
committerSergey Petrunya <psergey@askmonty.org>2012-02-22 17:38:24 +0400
commit567d871ff0c9cbdcaa4f9daa6810760edc901e14 (patch)
tree606168f861c2d0f4984a22ed07dfb2c10eedd38c /mysql-test/r/myisam_icp_notembedded.result
parent917455911f1ec995e40ac8b47f3c78ad503e7a95 (diff)
downloadmariadb-git-567d871ff0c9cbdcaa4f9daa6810760edc901e14.tar.gz
Don't run test for BUG#933412 with embedded server, as it requires concurrent query
execution which mtr --embedded does not support
Diffstat (limited to 'mysql-test/r/myisam_icp_notembedded.result')
-rw-r--r--mysql-test/r/myisam_icp_notembedded.result19
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/r/myisam_icp_notembedded.result b/mysql-test/r/myisam_icp_notembedded.result
new file mode 100644
index 00000000000..d965cbd980d
--- /dev/null
+++ b/mysql-test/r/myisam_icp_notembedded.result
@@ -0,0 +1,19 @@
+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);
+# Now run a number of ICP queries while trying to kill them
+DROP TABLE t1,t2;
+set optimizer_switch=@myisam_icp_notembedded_tmp;