Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
cc2298eb
Commit
cc2298eb
authored
Apr 04, 2012
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make test results stable.
parent
e14d6ef4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
9 deletions
+10
-9
mysql-test/r/subselect_sj2.result
mysql-test/r/subselect_sj2.result
+3
-3
mysql-test/r/subselect_sj2_jcl6.result
mysql-test/r/subselect_sj2_jcl6.result
+3
-3
mysql-test/r/subselect_sj2_mat.result
mysql-test/r/subselect_sj2_mat.result
+3
-3
mysql-test/t/subselect_sj2.test
mysql-test/t/subselect_sj2.test
+1
-0
No files found.
mysql-test/r/subselect_sj2.result
View file @
cc2298eb
...
...
@@ -95,9 +95,9 @@ A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a
from t0 A, t0 B where B.a <5;
explain select * from t3 where b in (select a from t0);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t3 ALL b NULL NULL NULL
56
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func
1
2 MATERIALIZED t0 ALL NULL NULL NULL NULL
10
1 PRIMARY t3 ALL b NULL NULL NULL
#
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func
#
2 MATERIALIZED t0 ALL NULL NULL NULL NULL
#
set @save_ecp= @@engine_condition_pushdown;
set engine_condition_pushdown=0;
select * from t3 where b in (select A.a+B.a from t0 A, t0 B where B.a<5);
...
...
mysql-test/r/subselect_sj2_jcl6.result
View file @
cc2298eb
...
...
@@ -106,9 +106,9 @@ A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a
from t0 A, t0 B where B.a <5;
explain select * from t3 where b in (select a from t0);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t3 ALL b NULL NULL NULL
56
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func
1
2 MATERIALIZED t0 ALL NULL NULL NULL NULL
10
1 PRIMARY t3 ALL b NULL NULL NULL
#
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func
#
2 MATERIALIZED t0 ALL NULL NULL NULL NULL
#
set @save_ecp= @@engine_condition_pushdown;
set engine_condition_pushdown=0;
select * from t3 where b in (select A.a+B.a from t0 A, t0 B where B.a<5);
...
...
mysql-test/r/subselect_sj2_mat.result
View file @
cc2298eb
...
...
@@ -97,9 +97,9 @@ A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a
from t0 A, t0 B where B.a <5;
explain select * from t3 where b in (select a from t0);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t3 ALL b NULL NULL NULL
46
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func
1
2 MATERIALIZED t0 ALL NULL NULL NULL NULL
10
1 PRIMARY t3 ALL b NULL NULL NULL
#
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func
#
2 MATERIALIZED t0 ALL NULL NULL NULL NULL
#
set @save_ecp= @@engine_condition_pushdown;
set engine_condition_pushdown=0;
select * from t3 where b in (select A.a+B.a from t0 A, t0 B where B.a<5);
...
...
mysql-test/t/subselect_sj2.test
View file @
cc2298eb
...
...
@@ -78,6 +78,7 @@ insert into t3 select
A
.
a
+
10
*
B
.
a
,
A
.
a
+
10
*
B
.
a
,
A
.
a
+
10
*
B
.
a
,
A
.
a
+
10
*
B
.
a
from
t0
A
,
t0
B
where
B
.
a
<
5
;
--
replace_column
9
#
explain
select
*
from
t3
where
b
in
(
select
a
from
t0
);
# Because of BUG#40154, run the next select w/o index condition pushdown:
set
@
save_ecp
=
@@
engine_condition_pushdown
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment