1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

cleanup: make a couple of tests more robust

with --sorted_result
This commit is contained in:
Sergei Golubchik
2017-02-05 13:00:12 +01:00
parent cff144a8ea
commit 01dd355635
11 changed files with 226 additions and 221 deletions

View File

@ -6012,26 +6012,26 @@ SELECT table1.f1, table2.f1_key FROM t1 AS table1, t2 AS table2
WHERE EXISTS (SELECT DISTINCT f1_key FROM t2
WHERE f1_key != table2.f1_key AND f1_key >= table1.f1);
f1 f1_key
v j
s j
v v
s v
v c
s c
v m
s d
s d
s d
s j
s m
v d
s d
v d
s d
v y
s y
v t
s t
v d
s d
v s
s s
s t
s v
s y
v c
v d
v d
v d
v j
v m
v s
v t
v v
v y
DROP TABLE t1,t2;
#
# LP bug 919427: EXPLAIN for a query over a single-row table
@ -6362,26 +6362,26 @@ SELECT DISTINCT f1_key
FROM t2
WHERE f1_key != table2.f1_key AND f1_key >= table1.f1 );
f1 f1_key
v j
s j
v v
s v
v c
s c
v m
s d
s d
s d
s j
s m
v d
s d
v d
s d
v y
s y
v t
s t
v d
s d
v s
s s
s t
s v
s y
v c
v d
v d
v d
v j
v m
v s
v t
v v
v y
explain SELECT table1.f1, table2.f1_key
FROM t1 AS table1, t2 AS table2
WHERE EXISTS