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
c078b5c5
Commit
c078b5c5
authored
Feb 01, 2008
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge cbell@bk-internal.mysql.com:/home/bk/mysql-5.0-rpl-merge
into mysql_cab_desk.:D:/source/c++/mysql-5.0-rpl-merge
parents
0a9fa826
b0747b45
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+7
-0
No files found.
client/mysqlbinlog.cc
View file @
c078b5c5
...
@@ -622,6 +622,13 @@ Create_file event for file_id: %u\n",exv->file_id);
...
@@ -622,6 +622,13 @@ Create_file event for file_id: %u\n",exv->file_id);
if
(
fname
)
if
(
fname
)
{
{
/*
Fix the path so it can be consumed by mysql client (requires Unix path).
*/
int
stop
=
strlen
(
fname
);
for
(
int
i
=
0
;
i
<
stop
;
i
++
)
if
(
fname
[
i
]
==
'\\'
)
fname
[
i
]
=
'/'
;
exlq
->
print
(
result_file
,
print_event_info
,
fname
);
exlq
->
print
(
result_file
,
print_event_info
,
fname
);
my_free
(
fname
,
MYF
(
MY_WME
));
my_free
(
fname
,
MYF
(
MY_WME
));
}
}
...
...
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