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
9a472a21
Commit
9a472a21
authored
May 06, 2008
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-bugteam
into mysql.com:/Users/davi/mysql/mysql-5.1-bugteam
parents
a7028d97
d2fb100c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
6 deletions
+15
-6
client/mysqltest.c
client/mysqltest.c
+15
-6
No files found.
client/mysqltest.c
View file @
9a472a21
...
...
@@ -5595,7 +5595,7 @@ void fix_win_paths(const char *val, int len)
*/
void
append_field
(
DYNAMIC_STRING
*
ds
,
uint
col_idx
,
MYSQL_FIELD
*
field
,
c
onst
c
har
*
val
,
ulonglong
len
,
my_bool
is_null
)
char
*
val
,
ulonglong
len
,
my_bool
is_null
)
{
if
(
col_idx
<
max_replace_column
&&
replace_column
[
col_idx
])
{
...
...
@@ -5618,9 +5618,18 @@ void append_field(DYNAMIC_STRING *ds, uint col_idx, MYSQL_FIELD* field,
(
start
[
1
]
==
'-'
||
start
[
1
]
==
'+'
)
&&
start
[
2
]
==
'0'
)
{
start
+=
2
;
/* Now points at first '0' */
/* Move all chars after the first '0' one step left */
memmove
(
start
,
start
+
1
,
strlen
(
start
));
len
--
;
if
(
field
->
flags
&
ZEROFILL_FLAG
)
{
/* Move all chars before the first '0' one step right */
memmove
(
val
+
1
,
val
,
start
-
val
);
*
val
=
'0'
;
}
else
{
/* Move all chars after the first '0' one step left */
memmove
(
start
,
start
+
1
,
strlen
(
start
));
len
--
;
}
}
}
#endif
...
...
@@ -5659,7 +5668,7 @@ void append_result(DYNAMIC_STRING *ds, MYSQL_RES *res)
lengths
=
mysql_fetch_lengths
(
res
);
for
(
i
=
0
;
i
<
num_fields
;
i
++
)
append_field
(
ds
,
i
,
&
fields
[
i
],
(
const
char
*
)
row
[
i
],
lengths
[
i
],
!
row
[
i
]);
row
[
i
],
lengths
[
i
],
!
row
[
i
]);
if
(
!
display_result_vertically
)
dynstr_append_mem
(
ds
,
"
\n
"
,
1
);
}
...
...
@@ -5708,7 +5717,7 @@ void append_stmt_result(DYNAMIC_STRING *ds, MYSQL_STMT *stmt,
while
(
mysql_stmt_fetch
(
stmt
)
==
0
)
{
for
(
i
=
0
;
i
<
num_fields
;
i
++
)
append_field
(
ds
,
i
,
&
fields
[
i
],
(
const
char
*
)
my_bind
[
i
].
buffer
,
append_field
(
ds
,
i
,
&
fields
[
i
],
my_bind
[
i
].
buffer
,
*
my_bind
[
i
].
length
,
*
my_bind
[
i
].
is_null
);
if
(
!
display_result_vertically
)
dynstr_append_mem
(
ds
,
"
\n
"
,
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