summaryrefslogtreecommitdiff
path: root/client/mysqlbinlog.cc
diff options
context:
space:
mode:
authorunknown <lars@mysql.com>2005-10-12 23:37:21 +0200
committerunknown <lars@mysql.com>2005-10-12 23:37:21 +0200
commit07d60cac9e7cf8fd88f7a60d8f57671ce9f539dc (patch)
tree040cb801cf50033915de02efce0179632bc0dbbf /client/mysqlbinlog.cc
parente83b5fdb539c59eb78bee54495933dcc038b459a (diff)
downloadmariadb-git-07d60cac9e7cf8fd88f7a60d8f57671ce9f539dc.tar.gz
mysqlbin --hexdump patch 3
client/mysqlbinlog.cc: Collapsing multiple arguments to print function into the last_event_info struct sql/log_event.cc: Only print header is length=19 (otherwise print in standard hexdump format) Collapsing multiple arguments into last_event_info struct sql/log_event.h: Collapsing multiple arguments into last_event_info struct
Diffstat (limited to 'client/mysqlbinlog.cc')
-rw-r--r--client/mysqlbinlog.cc26
1 files changed, 15 insertions, 11 deletions
diff --git a/client/mysqlbinlog.cc b/client/mysqlbinlog.cc
index 7ae563c7209..2b96914bfc9 100644
--- a/client/mysqlbinlog.cc
+++ b/client/mysqlbinlog.cc
@@ -496,6 +496,7 @@ int process_event(LAST_EVENT_INFO *last_event_info, Log_event *ev,
char ll_buff[21];
Log_event_type ev_type= ev->get_type_code();
DBUG_ENTER("process_event");
+ last_event_info->short_form= short_form;
/*
Format events are not concerned by --offset and such, we always need to
@@ -524,14 +525,16 @@ int process_event(LAST_EVENT_INFO *last_event_info, Log_event *ev,
if (!short_form)
fprintf(result_file, "# at %s\n",llstr(pos,ll_buff));
- /* Set pos to 0 if hexdump is disabled */
- if (!opt_hexdump) pos= 0;
+ if (!opt_hexdump)
+ last_event_info->hexdump_from= 0; /* Disabled */
+ else
+ last_event_info->hexdump_from= pos;
switch (ev_type) {
case QUERY_EVENT:
if (check_database(((Query_log_event*)ev)->db))
goto end;
- ev->print(result_file, short_form, pos, last_event_info);
+ ev->print(result_file, last_event_info);
break;
case CREATE_FILE_EVENT:
{
@@ -551,7 +554,7 @@ int process_event(LAST_EVENT_INFO *last_event_info, Log_event *ev,
filename and use LOCAL), prepared in the 'case EXEC_LOAD_EVENT'
below.
*/
- ce->print(result_file, short_form, pos, last_event_info, TRUE);
+ ce->print(result_file, last_event_info, TRUE);
// If this binlog is not 3.23 ; why this test??
if (description_event->binlog_version >= 3)
@@ -563,13 +566,13 @@ int process_event(LAST_EVENT_INFO *last_event_info, Log_event *ev,
break;
}
case APPEND_BLOCK_EVENT:
- ev->print(result_file, short_form, pos, last_event_info);
+ ev->print(result_file, last_event_info);
if (load_processor.process((Append_block_log_event*) ev))
break; // Error
break;
case EXEC_LOAD_EVENT:
{
- ev->print(result_file, short_form, pos, last_event_info);
+ ev->print(result_file, last_event_info);
Execute_load_log_event *exv= (Execute_load_log_event*)ev;
Create_file_log_event *ce= load_processor.grab_event(exv->file_id);
/*
@@ -579,7 +582,7 @@ int process_event(LAST_EVENT_INFO *last_event_info, Log_event *ev,
*/
if (ce)
{
- ce->print(result_file, short_form, pos, last_event_info, TRUE);
+ ce->print(result_file, last_event_info, TRUE);
my_free((char*)ce->fname,MYF(MY_WME));
delete ce;
}
@@ -591,7 +594,8 @@ Create_file event for file_id: %u\n",exv->file_id);
case FORMAT_DESCRIPTION_EVENT:
delete description_event;
description_event= (Format_description_log_event*) ev;
- ev->print(result_file, short_form, pos, last_event_info);
+ last_event_info->common_header_len= description_event->common_header_len;
+ ev->print(result_file, last_event_info);
/*
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
@@ -601,7 +605,7 @@ Create_file event for file_id: %u\n",exv->file_id);
ev= 0;
break;
case BEGIN_LOAD_QUERY_EVENT:
- ev->print(result_file, short_form, pos, last_event_info);
+ ev->print(result_file, last_event_info);
load_processor.process((Begin_load_query_log_event*) ev);
break;
case EXECUTE_LOAD_QUERY_EVENT:
@@ -618,7 +622,7 @@ Create_file event for file_id: %u\n",exv->file_id);
if (fname)
{
- exlq->print(result_file, short_form, pos, last_event_info, fname);
+ exlq->print(result_file, last_event_info, fname);
my_free(fname, MYF(MY_WME));
}
else
@@ -627,7 +631,7 @@ Begin_load_query event for file_id: %u\n", exlq->file_id);
break;
}
default:
- ev->print(result_file, short_form, pos, last_event_info);
+ ev->print(result_file, last_event_info);
}
}