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
4139e73c
Commit
4139e73c
authored
Sep 07, 2004
by
ram@gw.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A fix (Bug #5428 small max_sort_length crash server).
parent
09f681ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
2 deletions
+27
-2
mysql-test/r/order_by.result
mysql-test/r/order_by.result
+13
-0
mysql-test/t/order_by.test
mysql-test/t/order_by.test
+13
-0
strings/ctype-simple.c
strings/ctype-simple.c
+1
-2
No files found.
mysql-test/r/order_by.result
View file @
4139e73c
...
...
@@ -723,3 +723,16 @@ col2 col col
2 2 2
1 3 3
drop table t1, t2;
create table t1 (a char(25));
insert into t1 set a = repeat('x', 20);
insert into t1 set a = concat(repeat('x', 19), 'z');
insert into t1 set a = concat(repeat('x', 19), 'ab');
insert into t1 set a = concat(repeat('x', 19), 'aa');
set max_sort_length=20;
select a from t1 order by a;
a
xxxxxxxxxxxxxxxxxxxab
xxxxxxxxxxxxxxxxxxxaa
xxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxz
drop table t1;
mysql-test/t/order_by.test
View file @
4139e73c
...
...
@@ -486,3 +486,16 @@ select t2.col2 as col, t2.col from t2 order by t2.col;
select
t2
.
col2
,
t2
.
col
,
t2
.
col
from
t2
order
by
t2
.
col
;
drop
table
t1
,
t2
;
#
# Bug #5428: a problem with small max_sort_length value
#
create
table
t1
(
a
char
(
25
));
insert
into
t1
set
a
=
repeat
(
'x'
,
20
);
insert
into
t1
set
a
=
concat
(
repeat
(
'x'
,
19
),
'z'
);
insert
into
t1
set
a
=
concat
(
repeat
(
'x'
,
19
),
'ab'
);
insert
into
t1
set
a
=
concat
(
repeat
(
'x'
,
19
),
'aa'
);
set
max_sort_length
=
20
;
select
a
from
t1
order
by
a
;
drop
table
t1
;
strings/ctype-simple.c
View file @
4139e73c
...
...
@@ -27,8 +27,7 @@ int my_strnxfrm_simple(CHARSET_INFO * cs,
const
uchar
*
src
,
uint
srclen
)
{
uchar
*
map
=
cs
->
sort_order
;
DBUG_ASSERT
(
len
>=
srclen
);
len
=
min
(
len
,
srclen
);
set_if_smaller
(
len
,
srclen
);
if
(
dest
!=
src
)
{
const
uchar
*
end
;
...
...
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