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
a93b0b59
Commit
a93b0b59
authored
Mar 07, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-4.0
into gluh.mysql.r18.ru:/home/gluh/MySQL-BUGS/mysql-4.0.7498
parents
bda53f8c
fd35e787
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
sql/item_strfunc.cc
sql/item_strfunc.cc
+7
-6
No files found.
sql/item_strfunc.cc
View file @
a93b0b59
...
...
@@ -1465,7 +1465,8 @@ Item_func_format::Item_func_format(Item *org,int dec) :Item_str_func(org)
String
*
Item_func_format
::
val_str
(
String
*
str
)
{
double
nr
=
args
[
0
]
->
val
();
uint32
diff
,
length
,
str_length
;
uint32
length
,
str_length
;
int
diff
;
uint
dec
;
if
((
null_value
=
args
[
0
]
->
null_value
))
return
0
;
/* purecov: inspected */
...
...
@@ -1483,17 +1484,17 @@ String *Item_func_format::val_str(String *str)
if
(
str_length
>=
dec
+
4
)
{
char
*
tmp
,
*
pos
;
length
=
str
->
length
()
+
(
diff
=
(
str_length
-
dec
-
1
)
/
3
);
length
=
str
->
length
()
+
(
diff
=
(
int
)
(
str_length
-
dec
-
1
)
/
3
);
str
=
copy_if_not_alloced
(
&
tmp_str
,
str
,
length
);
str
->
length
(
length
);
tmp
=
(
char
*
)
str
->
ptr
()
+
length
-
dec
-
1
;
for
(
pos
=
(
char
*
)
str
->
ptr
()
+
length
-
1
;
pos
!=
tmp
;
pos
--
)
pos
[
0
]
=
pos
[
-
(
int
)
diff
];
pos
[
0
]
=
pos
[
-
diff
];
while
(
diff
)
{
pos
[
0
]
=
pos
[
-
(
int
)
diff
];
pos
--
;
pos
[
0
]
=
pos
[
-
(
int
)
diff
];
pos
--
;
pos
[
0
]
=
pos
[
-
(
int
)
diff
];
pos
--
;
pos
[
0
]
=
pos
[
-
diff
];
pos
--
;
pos
[
0
]
=
pos
[
-
diff
];
pos
--
;
pos
[
0
]
=
pos
[
-
diff
];
pos
--
;
pos
[
0
]
=
','
;
pos
--
;
diff
--
;
...
...
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