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
fb8b9ca6
Commit
fb8b9ca6
authored
Nov 16, 2004
by
guilhem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compilation failures fixes. mysqldump now compiles on AIX 4.3.
parent
99417e07
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
client/mysqldump.c
client/mysqldump.c
+2
-2
No files found.
client/mysqldump.c
View file @
fb8b9ca6
...
...
@@ -1684,7 +1684,7 @@ static void dumpTable(uint numFields, char *table)
else
if
(
opt_hex_blob
&&
is_blob
)
{
/* sakaik got the idea to to provide blob's in hex notation. */
unsigned
char
*
ptr
=
row
[
i
],
*
end
=
ptr
+
lengths
[
i
];
char
*
ptr
=
row
[
i
],
*
end
=
ptr
+
lengths
[
i
];
fputs
(
"0x"
,
md_result_file
);
for
(;
ptr
<
end
;
ptr
++
)
fprintf
(
md_result_file
,
"%02X"
,
*
ptr
);
...
...
@@ -2246,7 +2246,7 @@ int main(int argc, char **argv)
}
if
(
opt_master_data
&&
do_show_master_status
(
sock
))
goto
err
;
if
(
opt_single_transaction
&&
do_unlock_tables
(
sock
))
/
/ unlock but no commit!
if
(
opt_single_transaction
&&
do_unlock_tables
(
sock
))
/
* unlock but no commit! */
goto
err
;
if
(
opt_alldbs
)
...
...
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