summaryrefslogtreecommitdiff
path: root/mysql-test/r/explain_non_select.result
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-09-26 14:47:32 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-09-26 14:47:32 +0400
commite8eeb2e7f90dfa7d54a0146322cfba32731e4b34 (patch)
tree78e4ab92015a7235452f9b75c94871e5a2584303 /mysql-test/r/explain_non_select.result
parent0b69c44e945658e82b4c5d532694795136018f12 (diff)
downloadmariadb-git-e8eeb2e7f90dfa7d54a0146322cfba32731e4b34.tar.gz
Update test results for the previous cset
Diffstat (limited to 'mysql-test/r/explain_non_select.result')
-rw-r--r--mysql-test/r/explain_non_select.result11
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/explain_non_select.result b/mysql-test/r/explain_non_select.result
index 267b5f27c35..7705ed29386 100644
--- a/mysql-test/r/explain_non_select.result
+++ b/mysql-test/r/explain_non_select.result
@@ -127,3 +127,14 @@ explain replace into t1 select * from t0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t0 ALL NULL NULL NULL NULL 8
drop table t0, t1;
+#
+# MDEV-5067: Valgrind warnings (Invalid read) in QPF_table_access::print_explain
+#
+CREATE TABLE t1 (i INT) ENGINE=MyISAM;
+INSERT INTO t1 VALUES (7),(0),(9);
+SELECT * FROM t1 INNER JOIN ( SELECT DISTINCT * FROM t1 ) AS sq ON (sq.i = t1.i);
+i i
+7 7
+0 0
+9 9
+DROP TABLE t1;