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
21636f1c
Commit
21636f1c
authored
Sep 15, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-4.1
into mysql.com:/home/jimw/my/mysql-4.1-clean
parents
af4d71f7
dbfc28ce
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
mysql-test/r/olap.result
mysql-test/r/olap.result
+12
-0
mysql-test/t/olap.test
mysql-test/t/olap.test
+9
-0
sql/sql_select.cc
sql/sql_select.cc
+1
-1
No files found.
mysql-test/r/olap.result
View file @
21636f1c
...
...
@@ -529,3 +529,15 @@ a LENGTH(a) COUNT(*)
2 1 1
NULL NULL 2
DROP TABLE t1;
create table t1 ( a varchar(9), b int );
insert into t1 values('a',1),(null,2);
select a, max(b) from t1 group by a with rollup;
a max(b)
NULL 2
a 1
NULL 2
select distinct a, max(b) from t1 group by a with rollup;
a max(b)
NULL 2
a 1
drop table t1;
mysql-test/t/olap.test
View file @
21636f1c
...
...
@@ -263,4 +263,13 @@ SELECT * FROM (SELECT a, LENGTH(a), COUNT(*) FROM t1 GROUP BY a WITH ROLLUP) t;
DROP
TABLE
t1
;
#
# Bug #12887 Distinct is not always applied after rollup
#
create
table
t1
(
a
varchar
(
9
),
b
int
);
insert
into
t1
values
(
'a'
,
1
),(
null
,
2
);
select
a
,
max
(
b
)
from
t1
group
by
a
with
rollup
;
select
distinct
a
,
max
(
b
)
from
t1
group
by
a
with
rollup
;
drop
table
t1
;
# End of 4.1 tests
sql/sql_select.cc
View file @
21636f1c
...
...
@@ -618,7 +618,7 @@ JOIN::optimize()
}
if
(
group_list
||
tmp_table_param
.
sum_func_count
)
{
if
(
!
hidden_group_fields
)
if
(
!
hidden_group_fields
&&
rollup
.
state
==
ROLLUP
::
STATE_NONE
)
select_distinct
=
0
;
}
else
if
(
select_distinct
&&
tables
-
const_tables
==
1
)
...
...
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