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
ccd5a4dc
Commit
ccd5a4dc
authored
Feb 13, 2009
by
Alexey Kopytov
Browse files
Options
Browse Files
Download
Plain Diff
Merge from dev tree.
parents
2a162ef3
a715b702
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
18 deletions
+32
-18
client/sql_string.cc
client/sql_string.cc
+6
-9
mysql-test/r/func_str.result
mysql-test/r/func_str.result
+6
-0
mysql-test/t/func_str.test
mysql-test/t/func_str.test
+9
-0
sql/sql_class.cc
sql/sql_class.cc
+5
-0
sql/sql_string.cc
sql/sql_string.cc
+6
-9
No files found.
client/sql_string.cc
View file @
ccd5a4dc
...
...
@@ -71,25 +71,22 @@ bool String::realloc(uint32 alloc_length)
char
*
new_ptr
;
if
(
alloced
)
{
if
((
new_ptr
=
(
char
*
)
my_realloc
(
Ptr
,
len
,
MYF
(
MY_WME
))))
{
Ptr
=
new_ptr
;
Alloced_length
=
len
;
}
else
return
TRUE
;
// Signal error
if
(
!
(
new_ptr
=
(
char
*
)
my_realloc
(
Ptr
,
len
,
MYF
(
MY_WME
))))
return
TRUE
;
// Signal error
}
else
if
((
new_ptr
=
(
char
*
)
my_malloc
(
len
,
MYF
(
MY_WME
))))
{
if
(
str_length
>
len
-
1
)
str_length
=
0
;
if
(
str_length
)
// Avoid bugs in memcpy on AIX
memcpy
(
new_ptr
,
Ptr
,
str_length
);
new_ptr
[
str_length
]
=
0
;
Ptr
=
new_ptr
;
Alloced_length
=
len
;
alloced
=
1
;
}
else
return
TRUE
;
// Signal error
Ptr
=
new_ptr
;
Alloced_length
=
len
;
}
Ptr
[
alloc_length
]
=
0
;
// This make other funcs shorter
return
FALSE
;
...
...
mysql-test/r/func_str.result
View file @
ccd5a4dc
...
...
@@ -2181,4 +2181,10 @@ def format(a, 2) 253 20 4 Y 0 2 8
format(a, 2)
1.33
drop table t1;
CREATE TABLE t1 (c DATE, aa VARCHAR(30));
INSERT INTO t1 VALUES ('2008-12-31','aaaaaa');
SELECT DATE_FORMAT(c, GET_FORMAT(DATE, 'eur')) h, CONCAT(UPPER(aa),', ', aa) i FROM t1;
h i
31.12.2008 AAAAAA, aaaaaa
DROP TABLE t1;
End of 5.0 tests
mysql-test/t/func_str.test
View file @
ccd5a4dc
...
...
@@ -1159,4 +1159,13 @@ select format(a, 2) from t1;
--
disable_metadata
drop
table
t1
;
#
# Bug #41868: crash or memory overrun with concat + upper, date_format functions
#
CREATE
TABLE
t1
(
c
DATE
,
aa
VARCHAR
(
30
));
INSERT
INTO
t1
VALUES
(
'2008-12-31'
,
'aaaaaa'
);
SELECT
DATE_FORMAT
(
c
,
GET_FORMAT
(
DATE
,
'eur'
))
h
,
CONCAT
(
UPPER
(
aa
),
', '
,
aa
)
i
FROM
t1
;
DROP
TABLE
t1
;
--
echo
End
of
5.0
tests
sql/sql_class.cc
View file @
ccd5a4dc
...
...
@@ -1047,6 +1047,11 @@ bool select_send::send_data(List<Item> &items)
my_message
(
ER_OUT_OF_RESOURCES
,
ER
(
ER_OUT_OF_RESOURCES
),
MYF
(
0
));
break
;
}
/*
Reset buffer to its original state, as it may have been altered in
Item::send().
*/
buffer
.
set
(
buff
,
sizeof
(
buff
),
&
my_charset_bin
);
}
thd
->
sent_row_count
++
;
if
(
!
thd
->
vio_ok
())
...
...
sql/sql_string.cc
View file @
ccd5a4dc
...
...
@@ -71,25 +71,22 @@ bool String::realloc(uint32 alloc_length)
char
*
new_ptr
;
if
(
alloced
)
{
if
((
new_ptr
=
(
char
*
)
my_realloc
(
Ptr
,
len
,
MYF
(
MY_WME
))))
{
Ptr
=
new_ptr
;
Alloced_length
=
len
;
}
else
return
TRUE
;
// Signal error
if
(
!
(
new_ptr
=
(
char
*
)
my_realloc
(
Ptr
,
len
,
MYF
(
MY_WME
))))
return
TRUE
;
// Signal error
}
else
if
((
new_ptr
=
(
char
*
)
my_malloc
(
len
,
MYF
(
MY_WME
))))
{
if
(
str_length
>
len
-
1
)
str_length
=
0
;
if
(
str_length
)
// Avoid bugs in memcpy on AIX
memcpy
(
new_ptr
,
Ptr
,
str_length
);
new_ptr
[
str_length
]
=
0
;
Ptr
=
new_ptr
;
Alloced_length
=
len
;
alloced
=
1
;
}
else
return
TRUE
;
// Signal error
Ptr
=
new_ptr
;
Alloced_length
=
len
;
}
Ptr
[
alloc_length
]
=
0
;
// This make other funcs shorter
return
FALSE
;
...
...
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