Update test results for the previous cset

This commit is contained in:
Sergey Petrunya 2013-09-26 14:47:32 +04:00
parent 0b69c44e94
commit e8eeb2e7f9

View File

@ -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;