summaryrefslogtreecommitdiff
path: root/mysql-test/r/selectivity_no_engine.result
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2014-06-07 19:00:26 +0200
committerSergey Petrunya <psergey@askmonty.org>2014-06-07 19:00:26 +0200
commit71df035551939d4200f54280493d670f31eba796 (patch)
tree2371e384490dfb8b2ef21c9cee26c35e7e50663f /mysql-test/r/selectivity_no_engine.result
parent414e8388bf8925ba128e10adc0086589f9f36016 (diff)
downloadmariadb-git-71df035551939d4200f54280493d670f31eba796.tar.gz
MDEV-6308: Server crashes in table_multi_eq_cond_selectivity with ...
- In table_cond_selectivity(), reset keyuse variable between the loops.
Diffstat (limited to 'mysql-test/r/selectivity_no_engine.result')
-rw-r--r--mysql-test/r/selectivity_no_engine.result28
1 files changed, 28 insertions, 0 deletions
diff --git a/mysql-test/r/selectivity_no_engine.result b/mysql-test/r/selectivity_no_engine.result
index da39ec1b3b4..e07329422af 100644
--- a/mysql-test/r/selectivity_no_engine.result
+++ b/mysql-test/r/selectivity_no_engine.result
@@ -215,6 +215,34 @@ SELECT * FROM t1 AS t1_1, t1 AS t1_2 WHERE NOT ( t1_1.a <> 'baz');
a b a b
DROP TABLE t1;
#
+# MDEV-6308: Server crashes in table_multi_eq_cond_selectivity with ...
+#
+CREATE TABLE t1 (
+id varchar(40) COLLATE utf8_bin,
+dt datetime,
+PRIMARY KEY (id)
+);
+INSERT INTO t1 VALUES ('foo','2011-04-12 05:18:08'),
+('bar','2013-09-19 11:37:03');
+CREATE TABLE t2 (
+t1_id varchar(40) COLLATE utf8_bin,
+f1 varchar(64),
+f2 varchar(1024),
+KEY (f1,f2(255))
+);
+INSERT INTO t2 VALUES ('foo','baz','qux'),('bar','baz','qux');
+set optimizer_use_condition_selectivity=2;
+explain
+select * from t1,t2 where t1.id = t2.t1_id and t2.f2='qux' and t2.f1='baz';
+id select_type table type possible_keys key key_len ref rows Extra
+1 SIMPLE t2 ref f1 f1 325 const,const 1 Using index condition; Using where
+1 SIMPLE t1 eq_ref PRIMARY PRIMARY 122 test.t2.t1_id 1
+select * from t1,t2 where t1.id = t2.t1_id and t2.f2='qux' and t2.f1='baz';
+id dt t1_id f1 f2
+foo 2011-04-12 05:18:08 foo baz qux
+bar 2013-09-19 11:37:03 bar baz qux
+drop table t1,t2;
+#
# End of the test file
#
set use_stat_tables= @save_use_stat_tables;