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
4cbe047c
Commit
4cbe047c
authored
May 08, 2009
by
Alexey Kopytov
Browse files
Options
Browse Files
Download
Plain Diff
Automerge.
parents
f0791b8b
c0cd2742
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
0 deletions
+26
-0
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+14
-0
mysql-test/r/mysqlbinlog.result
mysql-test/r/mysqlbinlog.result
+2
-0
mysql-test/t/mysqlbinlog.test
mysql-test/t/mysqlbinlog.test
+10
-0
No files found.
client/mysqlbinlog.cc
View file @
4cbe047c
...
...
@@ -626,6 +626,7 @@ Create_file event for file_id: %u\n",exv->file_id);
glob_description_event
=
(
Format_description_log_event
*
)
ev
;
print_event_info
->
common_header_len
=
glob_description_event
->
common_header_len
;
ev
->
print
(
result_file
,
print_event_info
);
ev
->
temp_buf
=
0
;
/*
We don't want this event to be deleted now, so let's hide it (I
(Guilhem) should later see if this triggers a non-serious Valgrind
...
...
@@ -668,8 +669,16 @@ Begin_load_query event for file_id: %u\n", exlq->file_id);
end:
rec_count
++
;
/*
Destroy the log_event object. If reading from a remote host,
set the temp_buf to NULL so that memory isn't freed twice.
*/
if
(
ev
)
{
if
(
remote_opt
)
ev
->
temp_buf
=
0
;
delete
ev
;
}
DBUG_RETURN
(
0
);
}
...
...
@@ -1151,6 +1160,11 @@ could be out of memory");
error
=
1
;
goto
err
;
}
/*
If reading from a remote host, ensure the temp_buf for the
Log_event class is pointing to the incoming stream.
*/
ev
->
register_temp_buf
((
char
*
)
net
->
read_pos
+
1
);
Log_event_type
type
=
ev
->
get_type_code
();
if
(
glob_description_event
->
binlog_version
>=
3
||
...
...
mysql-test/r/mysqlbinlog.result
View file @
4cbe047c
...
...
@@ -380,4 +380,6 @@ IS NOT NULL
1
*** Unsigned server_id 4294967295 is found: 1 ***
SET @@global.server_id= 1;
RESET MASTER;
FLUSH LOGS;
End of 5.0 tests
mysql-test/t/mysqlbinlog.test
View file @
4cbe047c
...
...
@@ -294,4 +294,14 @@ echo *** Unsigned server_id $s_id_max is found: $s_id_unsigned ***;
eval
SET
@@
global
.
server_id
=
$save_server_id
;
--
remove_file
$binlog_file
#
# Bug #41943: mysqlbinlog.exe crashes if --hexdump option is used
#
RESET
MASTER
;
FLUSH
LOGS
;
# We do not need the results, just make sure that mysqlbinlog does not crash
--
exec
$MYSQL_BINLOG
--
hexdump
--
read
-
from
-
remote
-
server
--
user
=
root
--
host
=
127.0
.
0.1
--
port
=
$MASTER_MYPORT
master
-
bin
.
000001
>/
dev
/
null
--
echo
End
of
5.0
tests
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