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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
c0463704
Commit
c0463704
authored
Jun 01, 2023
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the test for --view
parent
aca641da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
17 deletions
+7
-17
mysql-test/main/derived_cond_pushdown.result
mysql-test/main/derived_cond_pushdown.result
+6
-16
mysql-test/main/derived_cond_pushdown.test
mysql-test/main/derived_cond_pushdown.test
+1
-1
No files found.
mysql-test/main/derived_cond_pushdown.result
View file @
c0463704
...
...
@@ -18384,7 +18384,7 @@ from
(select a, sum(b) as s from t2 group by a) as dt,
t3
where dt.a=t1.a and t3.a < 3
)
)
as sq
from t1 limit 5;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 1000
...
...
@@ -18398,14 +18398,9 @@ from
(select a, sum(b) as s from t2 group by a) as dt,
t3
where dt.a=t1.a and t3.a < 3
)
)
as sq
from t1 limit 5;
a ( select concat(t3.a,'=',dt.s)
from
(select a, sum(b) as s from t2 group by a) as dt,
t3
where dt.a=t1.a and t3.a < 3
)
a sq
1 1=804
2 1=1056
3 1=846
...
...
@@ -18424,7 +18419,7 @@ from
(select a, sum(b) as s from t2 group by a) as dt,
t3
where dt.a=t1.a and t3.a < 3
)
)
as sq
from t1 limit 5;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 1000
...
...
@@ -18438,14 +18433,9 @@ from
(select a, sum(b) as s from t2 group by a) as dt,
t3
where dt.a=t1.a and t3.a < 3
)
)
as sq
from t1 limit 5;
a ( select concat(t3.a,'=',dt.s)
from
(select a, sum(b) as s from t2 group by a) as dt,
t3
where dt.a=t1.a and t3.a < 3
)
a sq
1 1=11858
2 1=11380
3 1=11588
...
...
mysql-test/main/derived_cond_pushdown.test
View file @
c0463704
...
...
@@ -3997,7 +3997,7 @@ select
(
select
a
,
sum
(
b
)
as
s
from
t2
group
by
a
)
as
dt
,
t3
where
dt
.
a
=
t1
.
a
and
t3
.
a
<
3
)
)
as
sq
from
t1
limit
5
;
eval
explain
$q
;
...
...
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