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
a921013a
Commit
a921013a
authored
Aug 30, 2011
by
Tor Didriksen
Browse files
Options
Browse Files
Download
Plain Diff
local merge
parents
034db5cb
c6de8c8c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
2 deletions
+49
-2
mysql-test/r/group_by.result
mysql-test/r/group_by.result
+32
-0
mysql-test/t/group_by.test
mysql-test/t/group_by.test
+14
-0
sql/filesort.cc
sql/filesort.cc
+3
-2
No files found.
mysql-test/r/group_by.result
View file @
a921013a
...
@@ -1891,4 +1891,36 @@ a AVG(t1.b) t11c t12c
...
@@ -1891,4 +1891,36 @@ a AVG(t1.b) t11c t12c
1 4.0000 6 6
1 4.0000 6 6
2 2.0000 7 7
2 2.0000 7 7
DROP TABLE t1;
DROP TABLE t1;
#
# Bug#11765254 (58200): Assertion failed: param.sort_length when grouping
# by functions
#
SET SQL_BIG_TABLES=1;
CREATE TABLE t1(a INT);
INSERT INTO t1 VALUES (0),(0);
SELECT 1 FROM t1 GROUP BY IF(`a`,'','');
1
1
SELECT 1 FROM t1 GROUP BY TRIM(LEADING RAND() FROM '');
1
1
SELECT 1 FROM t1 GROUP BY SUBSTRING('',SLEEP(0),'');
1
1
Warnings:
Warning 1292 Truncated incorrect INTEGER value: ''
Warning 1292 Truncated incorrect INTEGER value: ''
Warning 1292 Truncated incorrect INTEGER value: ''
SELECT 1 FROM t1 GROUP BY SUBSTRING(SYSDATE() FROM 'K' FOR 'jxW<');
1
1
Warnings:
Warning 1292 Truncated incorrect INTEGER value: 'K'
Warning 1292 Truncated incorrect INTEGER value: 'jxW<'
Warning 1292 Truncated incorrect INTEGER value: 'K'
Warning 1292 Truncated incorrect INTEGER value: 'jxW<'
Warning 1292 Truncated incorrect INTEGER value: 'K'
Warning 1292 Truncated incorrect INTEGER value: 'jxW<'
DROP TABLE t1;
SET SQL_BIG_TABLES=0;
# End of 5.1 tests
# End of 5.1 tests
mysql-test/t/group_by.test
View file @
a921013a
...
@@ -1283,5 +1283,19 @@ FROM t1 GROUP BY a;
...
@@ -1283,5 +1283,19 @@ FROM t1 GROUP BY a;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
--
echo
#
--
echo
# Bug#11765254 (58200): Assertion failed: param.sort_length when grouping
--
echo
# by functions
--
echo
#
SET
SQL_BIG_TABLES
=
1
;
CREATE
TABLE
t1
(
a
INT
);
INSERT
INTO
t1
VALUES
(
0
),(
0
);
SELECT
1
FROM
t1
GROUP
BY
IF
(
`a`
,
''
,
''
);
SELECT
1
FROM
t1
GROUP
BY
TRIM
(
LEADING
RAND
()
FROM
''
);
SELECT
1
FROM
t1
GROUP
BY
SUBSTRING
(
''
,
SLEEP
(
0
),
''
);
SELECT
1
FROM
t1
GROUP
BY
SUBSTRING
(
SYSDATE
()
FROM
'K'
FOR
'jxW<'
);
DROP
TABLE
t1
;
SET
SQL_BIG_TABLES
=
0
;
--
echo
# End of 5.1 tests
--
echo
# End of 5.1 tests
sql/filesort.cc
View file @
a921013a
...
@@ -144,8 +144,6 @@ ha_rows filesort(THD *thd, TABLE *table, SORT_FIELD *sortorder, uint s_length,
...
@@ -144,8 +144,6 @@ ha_rows filesort(THD *thd, TABLE *table, SORT_FIELD *sortorder, uint s_length,
error
=
1
;
error
=
1
;
bzero
((
char
*
)
&
param
,
sizeof
(
param
));
bzero
((
char
*
)
&
param
,
sizeof
(
param
));
param
.
sort_length
=
sortlength
(
thd
,
sortorder
,
s_length
,
&
multi_byte_charset
);
param
.
sort_length
=
sortlength
(
thd
,
sortorder
,
s_length
,
&
multi_byte_charset
);
/* filesort cannot handle zero-length records. */
DBUG_ASSERT
(
param
.
sort_length
);
param
.
ref_length
=
table
->
file
->
ref_length
;
param
.
ref_length
=
table
->
file
->
ref_length
;
param
.
addon_field
=
0
;
param
.
addon_field
=
0
;
param
.
addon_length
=
0
;
param
.
addon_length
=
0
;
...
@@ -257,6 +255,9 @@ ha_rows filesort(THD *thd, TABLE *table, SORT_FIELD *sortorder, uint s_length,
...
@@ -257,6 +255,9 @@ ha_rows filesort(THD *thd, TABLE *table, SORT_FIELD *sortorder, uint s_length,
}
}
else
else
{
{
/* filesort cannot handle zero-length records during merge. */
DBUG_ASSERT
(
param
.
sort_length
!=
0
);
if
(
table_sort
.
buffpek
&&
table_sort
.
buffpek_len
<
maxbuffer
)
if
(
table_sort
.
buffpek
&&
table_sort
.
buffpek_len
<
maxbuffer
)
{
{
x_free
(
table_sort
.
buffpek
);
x_free
(
table_sort
.
buffpek
);
...
...
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