mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
merge from 5.1 repo.
This commit is contained in:
@ -6320,11 +6320,18 @@ void Create_file_log_event::print(FILE* file, PRINT_EVENT_INFO* print_event_info
|
||||
{
|
||||
Load_log_event::print(file, print_event_info,
|
||||
!check_fname_outside_temp_buf());
|
||||
/*
|
||||
That one is for "file_id: etc" below: in mysqlbinlog we want the #, in
|
||||
SHOW BINLOG EVENTS we don't.
|
||||
*/
|
||||
my_b_printf(&cache, "#");
|
||||
/**
|
||||
reduce the size of io cache so that the write function is called
|
||||
for every call to my_b_printf().
|
||||
*/
|
||||
DBUG_EXECUTE_IF ("simulate_create_event_write_error",
|
||||
{(&cache)->write_pos= (&cache)->write_end;
|
||||
DBUG_SET("+d,simulate_file_write_error");});
|
||||
/*
|
||||
That one is for "file_id: etc" below: in mysqlbinlog we want the #, in
|
||||
SHOW BINLOG EVENTS we don't.
|
||||
*/
|
||||
my_b_printf(&cache, "#");
|
||||
}
|
||||
|
||||
my_b_printf(&cache, " file_id: %d block_len: %d\n", file_id, block_len);
|
||||
@ -7000,6 +7007,13 @@ void Execute_load_query_log_event::print(FILE* file,
|
||||
Write_on_release_cache cache(&print_event_info->head_cache, file);
|
||||
|
||||
print_query_header(&cache, print_event_info);
|
||||
/**
|
||||
reduce the size of io cache so that the write function is called
|
||||
for every call to my_b_printf().
|
||||
*/
|
||||
DBUG_EXECUTE_IF ("simulate_execute_event_write_error",
|
||||
{(&cache)->write_pos= (&cache)->write_end;
|
||||
DBUG_SET("+d,simulate_file_write_error");});
|
||||
|
||||
if (local_fname)
|
||||
{
|
||||
|
Reference in New Issue
Block a user