#At file:///home/linuxjedi/Programming/bzr/mysql-5.5-wl-4783/ based on revid:build@stripped65zssbdmk4
2923 Andrew Hutchings 2009-12-06
WL#4783 Extend mysqlbinlog to support remote backup of binary logs
The aim is to modify mysqlbinlog so that it can remotely retreive the raw binary logs and stay connected retreiving them. This way you can have a up-to-the-second remote backup of your data (even better when combined with mysqldump --master-data as snapshots).
You retreive from many servers simultaneously into a backup server using this method (use a mysqlbinlog instance per server).
Changes:
* mysqlbinlog now safely exits with CTRL-C or kill (closes files properly)
* --raw added which will retrieve raw binlog files from the remote server and save them using the filenames in the replication headers
* --wait-for-data added which waits for new data on a remote connection instead of quitting at the end of the last log (sets serverID=65535)
* --result-dir added for use with --raw mode
* --result-file modified so that when used with --raw mode it is a prefix for the output files
added:
mysql-test/r/mysqlbinlog_raw_mode.result
mysql-test/r/mysqlbinlog_raw_mode2.result
mysql-test/t/mysqlbinlog_raw_mode.test
mysql-test/t/mysqlbinlog_raw_mode2.test
modified:
client/Makefile.am
client/client_priv.h
client/mysqlbinlog.cc
=== modified file 'client/Makefile.am'
--- a/client/Makefile.am 2009-09-03 12:29:25 +0000
+++ b/client/Makefile.am 2009-12-06 08:34:46 +0000
@@ -57,15 +57,10 @@ mysql_LDADD = @readline_link@ @TERMCAP
$(LDADD) $(CXXLDFLAGS)
mysqladmin_SOURCES = mysqladmin.cc
-mysqlbinlog_SOURCES = mysqlbinlog.cc \
- $(top_srcdir)/mysys/mf_tempdir.c \
- $(top_srcdir)/mysys/my_new.cc \
- $(top_srcdir)/mysys/my_bit.c \
- $(top_srcdir)/mysys/my_bitmap.c \
- $(top_srcdir)/mysys/my_vle.c \
- $(top_srcdir)/mysys/base64.c
-mysqlbinlog_LDADD = $(LDADD) $(CXXLDFLAGS)
-
+mysqlbinlog_SOURCES = mysqlbinlog.cc
+mysqlbinlog_LDADD = $(LDADD) $(CXXLDFLAGS) $(CLIENT_THREAD_LIBS) \
+ $(LIBMYSQLCLIENT_LA) @CLIENT_EXTRA_LDFLAGS@ \
+ $(top_builddir)/mysys/libmysys.a
mysqldump_SOURCES= mysqldump.c \
my_user.c \
$(top_srcdir)/mysys/mf_getdate.c
=== modified file 'client/client_priv.h'
--- a/client/client_priv.h 2009-10-15 12:23:43 +0000
+++ b/client/client_priv.h 2009-12-06 08:34:46 +0000
@@ -81,5 +81,5 @@ enum options_client
OPT_DEBUG_INFO, OPT_DEBUG_CHECK, OPT_COLUMN_TYPES, OPT_ERROR_LOG_FILE,
OPT_WRITE_BINLOG, OPT_DUMP_DATE,
OPT_INIT_COMMAND,
- OPT_MAX_CLIENT_OPTION
+ OPT_MAX_CLIENT_OPTION, OPT_RAW_OUTPUT, OPT_OUTPUT_DIR
};
=== modified file 'client/mysqlbinlog.cc'
--- a/client/mysqlbinlog.cc 2009-11-06 14:20:27 +0000
+++ b/client/mysqlbinlog.cc 2009-12-06 08:34:46 +0000
@@ -34,6 +34,8 @@
#include "mysql_priv.h"
#include "log_event.h"
#include "sql_common.h"
+#include <signal.h>
+#include <my_dir.h>
#define BIN_LOG_HEADER_SIZE 4
#define PROBE_HEADER_LEN (EVENT_LEN_OFFSET+4)
@@ -51,6 +53,7 @@ ulong open_files_limit;
uint test_flags = 0;
static uint opt_protocol= 0;
static FILE *result_file;
+char **defaults_argv;
#ifndef DBUG_OFF
static const char* default_dbug_option = "d:t:o,/tmp/mysqlbinlog.trace";
@@ -60,7 +63,7 @@ static const char *load_default_groups[]
static void error(const char *format, ...) ATTRIBUTE_FORMAT(printf, 1, 2);
static void warning(const char *format, ...) ATTRIBUTE_FORMAT(printf, 1, 2);
-static bool one_database=0, to_last_remote_log= 0, disable_log_bin= 0;
+static bool one_database=0, disable_log_bin= 0;
static bool opt_hexdump= 0;
const char *base64_output_mode_names[]=
{"NEVER", "AUTO", "ALWAYS", "UNSPEC", "DECODE-ROWS", NullS};
@@ -70,9 +73,12 @@ TYPELIB base64_output_mode_typelib=
static enum_base64_output_mode opt_base64_output_mode= BASE64_OUTPUT_UNSPEC;
static const char *opt_base64_output_mode_str= NullS;
static const char* database= 0;
+static const char* output_file= 0;
+static const char* output_dir= 0;
static my_bool force_opt= 0, short_form= 0, remote_opt= 0;
static my_bool debug_info_flag, debug_check_flag;
-static my_bool force_if_open_opt= 1;
+static my_bool force_if_open_opt= 1, raw_mode= 0;
+static my_bool to_last_remote_log= 0, wait_for_remote_data= 0;
static ulonglong offset = 0;
static const char* host = 0;
static int port= 0;
@@ -124,7 +130,10 @@ static Exit_status dump_remote_log_entri
const char* logname);
static Exit_status dump_log_entries(const char* logname);
static Exit_status safe_connect();
-
+static void force_quit(int param);
+static void quit(Exit_status retval);
+static void init_signals(void);
+static int args_post_process(void);
class Load_log_processor
{
@@ -1071,8 +1080,17 @@ static struct my_option my_long_options[
{"read-from-remote-server", 'R', "Read binary logs from a MySQL server",
(uchar**) &remote_opt, (uchar**) &remote_opt, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
0, 0},
- {"result-file", 'r', "Direct output to a given file.", 0, 0, 0, GET_STR,
- REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
+ {"raw", OPT_RAW_OUTPUT, "Requires -R. Output raw binlog data instead of SQL \
+statements, output is to log files.",
+ (uchar**) &raw_mode, (uchar**) &raw_mode, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
+ 0, 0},
+ {"result-dir", OPT_OUTPUT_DIR, "Requires --raw. Direct output to a given \
+directory. Cannot use with --result-file.", (uchar**) &output_dir,
+ (uchar**) &output_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
+ {"result-file", 'r', "Direct output to a given file. With --raw this is a \
+prefix for the file names. Cannot use with --result-dir.",
+ (uchar**) &output_file, (uchar**) &output_file, 0, GET_STR, REQUIRED_ARG,
+ 0, 0, 0, 0, 0, 0},
{"server-id", OPT_SERVER_ID,
"Extract only binlog entries created by the server having the given id.",
(uchar**) &server_id, (uchar**) &server_id, 0, GET_ULONG,
@@ -1138,6 +1156,11 @@ that may lead to an endless loop.",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
{"version", 'V', "Print version and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0,
0, 0, 0, 0, 0},
+ {"wait-for-data", 'w', "Wait for more data from the server \
+instead of stopping at the end of the last log. Also implicitly sets \
+--to-last-log.",
+ (uchar**) &wait_for_remote_data, (uchar**) &wait_for_remote_data, 0,
+ GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
{"open_files_limit", OPT_OPEN_FILES_LIMIT,
"Used to reserve file descriptors for usage by this program",
(uchar**) &open_files_limit, (uchar**) &open_files_limit, 0, GET_ULONG,
@@ -1307,10 +1330,6 @@ get_one_option(int optid, const struct m
else
tty_password=1;
break;
- case 'r':
- if (!(result_file = my_fopen(argument, O_WRONLY | O_BINARY, MYF(MY_WME))))
- exit(1);
- break;
case 'R':
remote_opt= 1;
break;
@@ -1342,6 +1361,10 @@ get_one_option(int optid, const struct m
case 'V':
print_version();
exit(0);
+ case 'w':
+ /* wait-for-data implicitly sets to-last-log */
+ to_last_remote_log= 1;
+ break;
case '?':
usage();
exit(0);
@@ -1426,17 +1449,24 @@ static Exit_status dump_log_entries(cons
Set safe delimiter, to dump things
like CREATE PROCEDURE safely
*/
+ if (!raw_mode)
+ {
fprintf(result_file, "DELIMITER /*!*/;\n");
+ }
strmov(print_event_info.delimiter, "/*!*/;");
print_event_info.verbose= short_form ? 0 : verbose;
+
rc= (remote_opt ? dump_remote_log_entries(&print_event_info, logname) :
dump_local_log_entries(&print_event_info, logname));
/* Set delimiter back to semicolon */
+ if (!raw_mode)
+ {
fprintf(result_file, "DELIMITER ;\n");
strmov(print_event_info.delimiter, ";");
+ }
return rc;
}
@@ -1536,10 +1566,13 @@ static Exit_status dump_remote_log_entri
uchar buf[128];
ulong len;
uint logname_len;
+ uint server_id;
NET* net;
my_off_t old_off= start_position_mot;
char fname[FN_REFLEN+1];
+ char log_file_name[FN_REFLEN+1];
Exit_status retval= OK_CONTINUE;
+ char seperator[2] = {FN_LIBCHAR,'\0'};
DBUG_ENTER("dump_remote_log_entries");
/*
@@ -1568,7 +1601,14 @@ static Exit_status dump_remote_log_entri
DBUG_RETURN(ERROR_STOP);
}
logname_len = (uint) tlen;
- int4store(buf + 6, 0);
+
+ /*
+ Fake a server ID to log continously.
+ This will show as a slave on the mysql server.
+ */
+ server_id= ( (to_last_remote_log && wait_for_remote_data) ? 65535 : 0);
+
+ int4store(buf + 6, server_id);
memcpy(buf + 10, logname, logname_len);
if (simple_command(mysql, COM_BINLOG_DUMP, buf, logname_len + 10, 1))
{
@@ -1589,6 +1629,7 @@ static Exit_status dump_remote_log_entri
}
if (len < 8 && net->read_pos[0] == 254)
break; // end of data
+
DBUG_PRINT("info",( "len: %lu net->read_pos[5]: %d\n",
len, net->read_pos[5]));
if (!(ev= Log_event::read_log_event((const char*) net->read_pos + 1 ,
@@ -1627,6 +1668,25 @@ static Exit_status dump_remote_log_entri
part of our log) and then we will stop when we receive the fake one
soon.
*/
+ if (raw_mode)
+ {
+ if (output_dir != 0)
+ {
+ strmov(log_file_name, output_dir);
+ strcat(log_file_name, seperator);
+ strcat(log_file_name, rev->new_log_ident);
+ }
+ else if (output_file != 0)
+ {
+ strcpy(log_file_name, output_file);
+ strcat(log_file_name, rev->new_log_ident);
+ }
+ else
+ {
+ strcpy(log_file_name, rev->new_log_ident);
+ }
+ }
+
if (rev->when == 0)
{
if (!to_last_remote_log)
@@ -1656,10 +1716,48 @@ static Exit_status dump_remote_log_entri
don't increment old_off. Real Format_description_log_event always
starts from BIN_LOG_HEADER_SIZE position.
*/
- if (old_off != BIN_LOG_HEADER_SIZE)
- len= 1; // fake event, don't increment old_off
+
+ // fake event when not in raw mode, don't increment old_off
+ if ((old_off != BIN_LOG_HEADER_SIZE) && (!raw_mode))
+ len= 1;
+
+ if (raw_mode)
+ {
+ my_fclose(result_file, MYF(0));
+ if (!(result_file = my_fopen(log_file_name, O_WRONLY | O_BINARY,
+ MYF(MY_WME))))
+ {
+ error("Could not create log file '%s'", log_file_name);
+ DBUG_RETURN(ERROR_STOP);
+ }
+ fprintf(result_file,"%s", BINLOG_MAGIC);
+ /*
+ Need to handle these events correctly in raw mode too
+ or this could get messy
+ */
+ delete glob_description_event;
+ glob_description_event= (Format_description_log_event*) ev;
+ print_event_info->common_header_len= glob_description_event->common_header_len;
+ ev->temp_buf= 0;
+ ev= 0;
+ }
+ }
+
+
+ if (raw_mode)
+ {
+ my_fwrite(result_file, net->read_pos + 1 , len - 1, MYF(0));
+ if (ev)
+ {
+ ev->temp_buf=0;
+ delete ev;
+ }
+ }
+ else
+ {
+ retval= process_event(print_event_info, ev, old_off, logname);
}
- Exit_status retval= process_event(print_event_info, ev, old_off, logname);
+
if (retval != OK_CONTINUE)
DBUG_RETURN(retval);
}
@@ -1669,7 +1767,6 @@ static Exit_status dump_remote_log_entri
const char *old_fname= le->fname;
uint old_len= le->fname_len;
File file;
- Exit_status retval;
if ((file= load_processor.prepare_new_file_for_old_format(le,fname)) < 0)
DBUG_RETURN(ERROR_STOP);
@@ -1695,7 +1792,6 @@ static Exit_status dump_remote_log_entri
DBUG_RETURN(OK_CONTINUE);
}
-
/**
Reads the @c Format_description_log_event from the beginning of a
local input file.
@@ -2002,16 +2098,73 @@ end:
return retval;
}
+/* Post processing of arguments to check for conflicts and other setups */
+static int args_post_process(void)
+{
+ DBUG_ENTER("args_post_process");
+ MY_STAT stat_info;
+ int err;
+
+ /*
+ You should not set output_file and output_dir at the same time!
+ */
+
+ if ((output_file != 0) && (output_dir != 0))
+ {
+ error("You cannot use --result-dir and --result-file simultaneously");
+ DBUG_RETURN(ERROR_STOP);
+ }
+
+ /*
+ You should not set output_dir and not turn on --raw mode
+ */
+
+ if ((output_dir != 0) && (raw_mode == 0))
+ {
+ error("You cannot use --result-dir without --raw");
+ DBUG_RETURN(ERROR_STOP);
+ }
+
+ if ((output_dir != 0 ) &&
+ (!my_stat(output_dir, &stat_info,MYF(0))))
+ {
+ // Directory doesn't exist, lets try and make it
+
+ err = my_mkdir(output_dir, 0770, MYF(0));
+ if (err != 0)
+ {
+ error("Directory '%s' doesn't exist and could not be created, err %d",
+ output_dir, err);
+ DBUG_RETURN(ERROR_STOP);
+ }
+ }
+
+ /*
+ Make this last of the post-option tests so we don't exit with a
+ file open
+ */
+
+ if ((output_file != 0) && (!raw_mode))
+ {
+ if (!(result_file = my_fopen(output_file, O_WRONLY | O_BINARY, MYF(MY_WME))))
+ {
+ error("Could not create log file '%s'", output_file);
+ DBUG_RETURN(ERROR_STOP);
+ }
+ }
+ DBUG_RETURN(OK_CONTINUE);
+}
int main(int argc, char** argv)
{
- char **defaults_argv;
- Exit_status retval= OK_CONTINUE;
+ Exit_status retval= OK_STOP;
ulonglong save_stop_position;
MY_INIT(argv[0]);
DBUG_ENTER("main");
DBUG_PROCESS(argv[0]);
+ init_signals();
+
my_init_time(); // for time functions
load_defaults("my", load_default_groups, &argc, &argv);
@@ -2021,15 +2174,17 @@ int main(int argc, char** argv)
if (!argc)
{
usage();
- free_defaults(defaults_argv);
- exit(1);
+ quit(ERROR_STOP);
}
+ /* Check for argument conflicts and do any post-processing */
+ if (args_post_process() == ERROR_STOP)
+ quit(ERROR_STOP);
+
if (opt_base64_output_mode == BASE64_OUTPUT_UNSPEC)
opt_base64_output_mode= BASE64_OUTPUT_AUTO;
my_set_max_open_files(open_files_limit);
-
MY_TMPDIR tmpdir;
tmpdir.list= 0;
if (!dirname_for_local_load)
@@ -2046,6 +2201,8 @@ int main(int argc, char** argv)
else
load_processor.init_by_cur_dir();
+ if (!raw_mode)
+ {
fprintf(result_file,
"/*!40019 SET @@session.max_insert_delayed_threads=0*/;\n");
@@ -2067,6 +2224,7 @@ int main(int argc, char** argv)
"\n/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;"
"\n/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;"
"\n/*!40101 SET NAMES %s */;\n", charset);
+ }
for (save_stop_position= stop_position, stop_position= ~(my_off_t)0 ;
(--argc >= 0) ; )
@@ -2080,6 +2238,8 @@ int main(int argc, char** argv)
start_position= BIN_LOG_HEADER_SIZE;
}
+ if (!raw_mode)
+ {
/*
Issue a ROLLBACK in case the last printed binlog was crashed and had half
of transaction.
@@ -2095,12 +2255,33 @@ int main(int argc, char** argv)
"/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n"
"/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n"
"/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n");
+ }
if (tmpdir.list)
free_tmpdir(&tmpdir);
+ quit(retval);
+}
+
+/* Catch all these signals so that we can close files safely when exiting */
+static void init_signals(void)
+{
+ int signals[] = {SIGINT,SIGILL,SIGFPE,SIGSEGV,SIGTERM,SIGABRT};
+
+ for (uint i=0 ; i < sizeof(signals)/sizeof(int) ; i++)
+ signal(signals[i], force_quit);
+}
+
+static void force_quit(int param)
+{
+ quit(OK_STOP);
+}
+
+static void quit(Exit_status retval)
+{
if (result_file != stdout)
my_fclose(result_file, MYF(0));
cleanup();
+ if (defaults_argv)
free_defaults(defaults_argv);
my_free_open_file_info();
load_processor.destroy();
@@ -2108,8 +2289,6 @@ int main(int argc, char** argv)
my_end(my_end_arg | MY_DONT_FREE_DBUG);
exit(retval == ERROR_STOP ? 1 : 0);
- /* Keep compilers happy. */
- DBUG_RETURN(retval == ERROR_STOP ? 1 : 0);
}
/*
=== added file 'mysql-test/r/mysqlbinlog_raw_mode.result'
--- a/mysql-test/r/mysqlbinlog_raw_mode.result 1970-01-01 00:00:00 +0000
+++ b/mysql-test/r/mysqlbinlog_raw_mode.result 2009-12-06 08:34:46 +0000
@@ -0,0 +1,166 @@
+reset master;
+set timestamp=1000000000;
+drop table if exists t1;
+create table t1 (word varchar(20));
+load data infile '../../std_data/words.dat' into table t1;
+load data infile '../../std_data/words.dat' into table t1;
+load data infile '../../std_data/words.dat' into table t1;
+flush logs;
+load data infile '../../std_data/words.dat' into table t1;
+load data infile '../../std_data/words.dat' into table t1;
+insert into t1 values ("Alas");
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+ROLLBACK/*!*/;
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=999999999/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+create table t1 (word varchar(20))
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+ROLLBACK/*!*/;
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=999999999/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+create table t1 (word varchar(20))
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=999999999/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+insert into t1 values ("Alas")
+/*!*/;
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+ROLLBACK/*!*/;
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=999999999/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+create table t1 (word varchar(20))
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+ROLLBACK/*!*/;
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=999999999/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+create table t1 (word varchar(20))
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+LOAD DATA LOCAL INFILE '/tmp/SQL_LOAD_MB-#-#' INTO TABLE `t1` FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' LINES TERMINATED BY '\n' (word)
+/*!*/;
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+DROP TABLE t1;
+End of 5.1 tests
=== added file 'mysql-test/r/mysqlbinlog_raw_mode2.result'
--- a/mysql-test/r/mysqlbinlog_raw_mode2.result 1970-01-01 00:00:00 +0000
+++ b/mysql-test/r/mysqlbinlog_raw_mode2.result 2009-12-06 08:34:46 +0000
@@ -0,0 +1,13035 @@
+reset master;
+set timestamp=1000000000;
+drop table if exists t1;
+CREATE TABLE t1 (c01 BIT);
+INSERT INTO t1 VALUES (0);
+INSERT INTO t1 VALUES (1);
+DROP TABLE t1;
+CREATE TABLE t1 (c01 BIT(7));
+INSERT INTO t1 VALUES (1);
+INSERT INTO t1 VALUES (2);
+INSERT INTO t1 VALUES (4);
+INSERT INTO t1 VALUES (8);
+INSERT INTO t1 VALUES (16);
+INSERT INTO t1 VALUES (32);
+INSERT INTO t1 VALUES (64);
+INSERT INTO t1 VALUES (127);
+DELETE FROM t1 WHERE c01=127;
+UPDATE t1 SET c01=15 WHERE c01=16;
+DROP TABLE t1;
+CREATE TABLE t1 (a BIT(20), b CHAR(2));
+INSERT INTO t1 VALUES (b'00010010010010001001', 'ab');
+DROP TABLE t1;
+CREATE TABLE t1 (c02 BIT(64));
+INSERT INTO t1 VALUES (1);
+INSERT INTO t1 VALUES (2);
+INSERT INTO t1 VALUES (128);
+INSERT INTO t1 VALUES (b'1111111111111111111111111111111111111111111111111111111111111111');
+DROP TABLE t1;
+CREATE TABLE t1 (c03 TINYINT);
+INSERT INTO t1 VALUES (1),(2),(3);
+INSERT INTO t1 VALUES (-128);
+UPDATE t1 SET c03=2 WHERE c03=1;
+DELETE FROM t1 WHERE c03=-128;
+DROP TABLE t1;
+CREATE TABLE t1 (c04 TINYINT UNSIGNED);
+INSERT INTO t1 VALUES (128), (255);
+UPDATE t1 SET c04=2 WHERE c04=1;
+DELETE FROM t1 WHERE c04=255;
+DROP TABLE t1;
+CREATE TABLE t1 (c06 BOOL);
+INSERT INTO t1 VALUES (TRUE);
+DELETE FROM t1 WHERE c06=TRUE;
+DROP TABLE t1;
+CREATE TABLE t1 (c07 SMALLINT);
+INSERT INTO t1 VALUES (1234);
+DELETE FROM t1 WHERE c07=1234;
+DROP TABLE t1;
+CREATE TABLE t1 (c08 SMALLINT UNSIGNED);
+INSERT INTO t1 VALUES (32768), (65535);
+UPDATE t1 SET c08=2 WHERE c08=32768;
+DELETE FROM t1 WHERE c08=65535;
+DROP TABLE t1;
+CREATE TABLE t1 (c10 MEDIUMINT);
+INSERT INTO t1 VALUES (12345);
+DELETE FROM t1 WHERE c10=12345;
+DROP TABLE t1;
+CREATE TABLE t1 (c11 MEDIUMINT UNSIGNED);
+INSERT INTO t1 VALUES (8388608), (16777215);
+UPDATE t1 SET c11=2 WHERE c11=8388608;
+DELETE FROM t1 WHERE c11=16777215;
+DROP TABLE t1;
+CREATE TABLE t1 (c13 INT);
+INSERT INTO t1 VALUES (123456);
+DELETE FROM t1 WHERE c13=123456;
+DROP TABLE t1;
+CREATE TABLE t1 (c14 INT UNSIGNED);
+INSERT INTO t1 VALUES (2147483648), (4294967295);
+UPDATE t1 SET c14=2 WHERE c14=2147483648;
+DELETE FROM t1 WHERE c14=4294967295;
+DROP TABLE t1;
+CREATE TABLE t1 (c16 BIGINT);
+INSERT INTO t1 VALUES (1234567890);
+DELETE FROM t1 WHERE c16=1234567890;
+DROP TABLE t1;
+CREATE TABLE t1 (c17 BIGINT UNSIGNED);
+INSERT INTO t1 VALUES (9223372036854775808), (18446744073709551615);
+UPDATE t1 SET c17=2 WHERE c17=9223372036854775808;
+DELETE FROM t1 WHERE c17=18446744073709551615;
+DROP TABLE t1;
+CREATE TABLE t1 (c19 FLOAT);
+INSERT INTO t1 VALUES (123.2234);
+DELETE FROM t1 WHERE c19>123;
+DROP TABLE t1;
+CREATE TABLE t1 (c22 DOUBLE);
+INSERT INTO t1 VALUES (123434.22344545);
+DELETE FROM t1 WHERE c22>123434;
+DROP TABLE t1;
+CREATE TABLE t1 (c25 DECIMAL(10,5));
+INSERT INTO t1 VALUES (124.45);
+INSERT INTO t1 VALUES (-543.21);
+DELETE FROM t1 WHERE c25=124.45;
+DROP TABLE t1;
+CREATE TABLE t1 (c28 DATE);
+INSERT INTO t1 VALUES ('2001-02-03');
+DELETE FROM t1 WHERE c28='2001-02-03';
+DROP TABLE t1;
+CREATE TABLE t1 (c29 DATETIME);
+INSERT INTO t1 VALUES ('2001-02-03 10:20:30');
+DELETE FROM t1 WHERE c29='2001-02-03 10:20:30';
+DROP TABLE t1;
+CREATE TABLE t1 (c30 TIMESTAMP);
+INSERT INTO t1 VALUES ('2001-02-03 10:20:30');
+DELETE FROM t1 WHERE c30='2001-02-03 10:20:30';
+DROP TABLE t1;
+CREATE TABLE t1 (c31 TIME);
+INSERT INTO t1 VALUES ('11:22:33');
+DELETE FROM t1 WHERE c31='11:22:33';
+DROP TABLE t1;
+CREATE TABLE t1 (c32 YEAR);
+INSERT INTO t1 VALUES ('2001');
+DELETE FROM t1 WHERE c32=2001;
+DROP TABLE t1;
+CREATE TABLE t1 (c33 CHAR);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c33='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c34 CHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c34='';
+DROP TABLE t1;
+CREATE TABLE t1 (c35 CHAR(1));
+INSERT INTO t1 VALUES ('b');
+DELETE FROM t1 WHERE c35='b';
+DROP TABLE t1;
+CREATE TABLE t1 (c36 CHAR(255));
+INSERT INTO t1 VALUES (repeat('c',255));
+DELETE FROM t1 WHERE c36>'c';
+DROP TABLE t1;
+CREATE TABLE t1 (c37 NATIONAL CHAR);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c37='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c38 NATIONAL CHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c38='';
+DROP TABLE t1;
+CREATE TABLE t1 (c39 NATIONAL CHAR(1));
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c39='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c40 NATIONAL CHAR(255));
+INSERT INTO t1 VALUES (repeat('a', 255));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 255));
+DELETE FROM t1 WHERE c40>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c41 CHAR CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c41='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c42 CHAR(0) CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c42='';
+DROP TABLE t1;
+CREATE TABLE t1 (c43 CHAR(1) CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c43='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c44 CHAR(255) CHARACTER SET UCS2);
+INSERT INTO t1 VALUES (repeat('a', 255));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 255));
+DELETE FROM t1 WHERE c44>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c45 VARCHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c45='';
+DROP TABLE t1;
+CREATE TABLE t1 (c46 VARCHAR(1));
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c46='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c47 VARCHAR(255));
+INSERT INTO t1 VALUES (repeat('a',255));
+DELETE FROM t1 WHERE c47>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c48 VARCHAR(261));
+INSERT INTO t1 VALUES (repeat('a',261));
+DELETE FROM t1 WHERE c48>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c49 NATIONAL VARCHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c49='';
+DROP TABLE t1;
+CREATE TABLE t1 (c50 NATIONAL VARCHAR(1));
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c50='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c51 NATIONAL VARCHAR(255));
+INSERT INTO t1 VALUES (repeat('a',255));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 255));
+DELETE FROM t1 WHERE c51>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c52 NATIONAL VARCHAR(261));
+INSERT INTO t1 VALUES (repeat('a',261));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 261));
+DELETE FROM t1 WHERE c52>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c53 VARCHAR(0) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c53='';
+DROP TABLE t1;
+CREATE TABLE t1 (c54 VARCHAR(1) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c54='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c55 VARCHAR(255) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES (repeat('ab', 127));
+DELETE FROM t1 WHERE c55>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c56 VARCHAR(261) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES (repeat('ab', 130));
+DELETE FROM t1 WHERE c56>'a';
+DROP TABLE t1;
+CREATE TABLE t1 (c57 BINARY);
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c57='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c58 BINARY(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c58='';
+DROP TABLE t1;
+CREATE TABLE t1 (c59 BINARY(1));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c59='a';
+DROP TABLE t1;
+CREATE TABLE t1 (c60 BINARY(255));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES (repeat('a\0',120));
+DELETE FROM t1 WHERE c60<0x02;
+DROP TABLE t1;
+CREATE TABLE t1 (c61 VARBINARY(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c61='';
+DROP TABLE t1;
+CREATE TABLE t1 (c62 VARBINARY(1));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c62=0x02;
+DROP TABLE t1;
+CREATE TABLE t1 (c63 VARBINARY(255));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES (repeat('a\0',120));
+DELETE FROM t1 WHERE c63=0x02;
+DROP TABLE t1;
+flush logs;
+CREATE TABLE t1 (c65 TINYBLOB);
+INSERT INTO t1 VALUES ('tinyblob1');
+DELETE FROM t1 WHERE c65='tinyblob1';
+DROP TABLE t1;
+CREATE TABLE t1 (c68 BLOB);
+INSERT INTO t1 VALUES ('blob1');
+DELETE FROM t1 WHERE c68='blob1';
+DROP TABLE t1;
+CREATE TABLE t1 (c71 MEDIUMBLOB);
+INSERT INTO t1 VALUES ('mediumblob1');
+DELETE FROM t1 WHERE c71='mediumblob1';
+DROP TABLE t1;
+CREATE TABLE t1 (c74 LONGBLOB);
+INSERT INTO t1 VALUES ('longblob1');
+DELETE FROM t1 WHERE c74='longblob1';
+DROP TABLE t1;
+CREATE TABLE t1 (c66 TINYTEXT);
+INSERT INTO t1 VALUES ('tinytext1');
+DELETE FROM t1 WHERE c66='tinytext1';
+DROP TABLE t1;
+CREATE TABLE t1 (c69 TEXT);
+INSERT INTO t1 VALUES ('text1');
+DELETE FROM t1 WHERE c69='text1';
+DROP TABLE t1;
+CREATE TABLE t1 (c72 MEDIUMTEXT);
+INSERT INTO t1 VALUES ('mediumtext1');
+DELETE FROM t1 WHERE c72='mediumtext1';
+DROP TABLE t1;
+CREATE TABLE t1 (c75 LONGTEXT);
+INSERT INTO t1 VALUES ('longtext1');
+DELETE FROM t1 WHERE c75='longtext1';
+DROP TABLE t1;
+CREATE TABLE t1 (c67 TINYTEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('tinytext1');
+DELETE FROM t1 WHERE c67='tinytext1';
+DROP TABLE t1;
+CREATE TABLE t1 (c70 TEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('text1');
+DELETE FROM t1 WHERE c70='text1';
+DROP TABLE t1;
+CREATE TABLE t1 (c73 MEDIUMTEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('mediumtext1');
+DELETE FROM t1 WHERE c73='mediumtext1';
+DROP TABLE t1;
+CREATE TABLE t1 (c76 LONGTEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('longtext1');
+DELETE FROM t1 WHERE c76='longtext1';
+DROP TABLE t1;
+CREATE TABLE t1 (c77 ENUM('a','b','c'));
+INSERT INTO t1 VALUES ('b');
+DELETE FROM t1 WHERE c77='b';
+DROP TABLE t1;
+CREATE TABLE t1 (c78 SET('a','b','c','d','e','f'));
+INSERT INTO t1 VALUES ('a,b');
+INSERT INTO t1 VALUES ('a,c');
+INSERT INTO t1 VALUES ('b,c');
+INSERT INTO t1 VALUES ('a,b,c');
+INSERT INTO t1 VALUES ('a,b,c,d');
+INSERT INTO t1 VALUES ('a,b,c,d,e');
+INSERT INTO t1 VALUES ('a,b,c,d,e,f');
+DELETE FROM t1 WHERE c78='a,b';
+DROP TABLE t1;
+CREATE TABLE t1 (a int NOT NULL DEFAULT 0, b int NOT NULL DEFAULT 0);
+CREATE TABLE t2 (a int NOT NULL DEFAULT 0, b int NOT NULL DEFAULT 0);
+INSERT INTO t1 SET a=1;
+INSERT INTO t1 SET b=1;
+INSERT INTO t2 SET a=1;
+INSERT INTO t2 SET b=1;
+UPDATE t1, t2 SET t1.a=10, t2.a=20;
+DROP TABLE t1,t2;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+# at 4
+#091206 #:#:# server id 1 end_log_pos 107 Start: binlog v 4, server v 5.5.1-beta-debug-log created 091206 #:#:# at startup
+ROLLBACK/*!*/;
+# at 107
+#010909 #:#:# server id 1 end_log_pos 193 Query thread_id=2 exec_time=# error_code=0
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=2/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+# at 193
+#010909 #:#:# server id 1 end_log_pos 281 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT)
+/*!*/;
+# at 281
+#010909 #:#:# server id 1 end_log_pos 349 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 349
+# at 392
+#010909 #:#:# server id 1 end_log_pos 392 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 423 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 423
+#010909 #:#:# server id 1 end_log_pos 492 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 492
+#010909 #:#:# server id 1 end_log_pos 560 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 560
+# at 603
+#010909 #:#:# server id 1 end_log_pos 603 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 634 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 634
+#010909 #:#:# server id 1 end_log_pos 703 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 703
+#010909 #:#:# server id 1 end_log_pos 779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 779
+#010909 #:#:# server id 1 end_log_pos 870 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT(7))
+/*!*/;
+# at 870
+#010909 #:#:# server id 1 end_log_pos 938 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 938
+# at 981
+#010909 #:#:# server id 1 end_log_pos 981 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1012 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000001' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1012
+#010909 #:#:# server id 1 end_log_pos 1081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1081
+#010909 #:#:# server id 1 end_log_pos 1149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1149
+# at 1192
+#010909 #:#:# server id 1 end_log_pos 1192 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1223 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000010' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1223
+#010909 #:#:# server id 1 end_log_pos 1292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1292
+#010909 #:#:# server id 1 end_log_pos 1360 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1360
+# at 1403
+#010909 #:#:# server id 1 end_log_pos 1403 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1434 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000100' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1434
+#010909 #:#:# server id 1 end_log_pos 1503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1503
+#010909 #:#:# server id 1 end_log_pos 1571 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1571
+# at 1614
+#010909 #:#:# server id 1 end_log_pos 1614 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1645 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0001000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1645
+#010909 #:#:# server id 1 end_log_pos 1714 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1714
+#010909 #:#:# server id 1 end_log_pos 1782 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1782
+# at 1825
+#010909 #:#:# server id 1 end_log_pos 1825 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1856 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1856
+#010909 #:#:# server id 1 end_log_pos 1925 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1925
+#010909 #:#:# server id 1 end_log_pos 1993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1993
+# at 2036
+#010909 #:#:# server id 1 end_log_pos 2036 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2067 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0100000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2067
+#010909 #:#:# server id 1 end_log_pos 2136 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2136
+#010909 #:#:# server id 1 end_log_pos 2204 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2204
+# at 2247
+#010909 #:#:# server id 1 end_log_pos 2247 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2278 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1000000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2278
+#010909 #:#:# server id 1 end_log_pos 2347 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2347
+#010909 #:#:# server id 1 end_log_pos 2415 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2415
+# at 2458
+#010909 #:#:# server id 1 end_log_pos 2458 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2489 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2489
+#010909 #:#:# server id 1 end_log_pos 2558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2558
+#010909 #:#:# server id 1 end_log_pos 2626 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2626
+# at 2669
+#010909 #:#:# server id 1 end_log_pos 2669 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2700 Delete_rows: table id 24 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2700
+#010909 #:#:# server id 1 end_log_pos 2769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2769
+#010909 #:#:# server id 1 end_log_pos 2837 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2837
+# at 2880
+#010909 #:#:# server id 1 end_log_pos 2880 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2914 Update_rows: table id 24 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+### SET
+### @1=b'0001111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2914
+#010909 #:#:# server id 1 end_log_pos 2983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2983
+#010909 #:#:# server id 1 end_log_pos 3059 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3059
+#010909 #:#:# server id 1 end_log_pos 3160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (a BIT(20), b CHAR(2))
+/*!*/;
+# at 3160
+#010909 #:#:# server id 1 end_log_pos 3228 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3228
+# at 3274
+#010909 #:#:# server id 1 end_log_pos 3274 Table_map: `test`.`t1` mapped to number 25
+#010909 #:#:# server id 1 end_log_pos 3310 Write_rows: table id 25 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00010010010010001001' /* BIT(20) meta=516 nullable=1 is_null=0 */
+### @2='ab' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 3310
+#010909 #:#:# server id 1 end_log_pos 3379 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3379
+#010909 #:#:# server id 1 end_log_pos 3455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3455
+#010909 #:#:# server id 1 end_log_pos 3547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c02 BIT(64))
+/*!*/;
+# at 3547
+#010909 #:#:# server id 1 end_log_pos 3615 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3615
+# at 3658
+#010909 #:#:# server id 1 end_log_pos 3658 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3696 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000001' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3696
+#010909 #:#:# server id 1 end_log_pos 3765 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3765
+#010909 #:#:# server id 1 end_log_pos 3833 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3833
+# at 3876
+#010909 #:#:# server id 1 end_log_pos 3876 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3914 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000010' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3914
+#010909 #:#:# server id 1 end_log_pos 3983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3983
+#010909 #:#:# server id 1 end_log_pos 4051 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4051
+# at 4094
+#010909 #:#:# server id 1 end_log_pos 4094 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4132 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000010000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4132
+#010909 #:#:# server id 1 end_log_pos 4201 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4201
+#010909 #:#:# server id 1 end_log_pos 4269 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4269
+# at 4312
+#010909 #:#:# server id 1 end_log_pos 4312 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4350 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4350
+#010909 #:#:# server id 1 end_log_pos 4419 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4419
+#010909 #:#:# server id 1 end_log_pos 4495 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 4495
+#010909 #:#:# server id 1 end_log_pos 4587 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c03 TINYINT)
+/*!*/;
+# at 4587
+#010909 #:#:# server id 1 end_log_pos 4655 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4655
+# at 4696
+#010909 #:#:# server id 1 end_log_pos 4696 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4731 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=3 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4731
+#010909 #:#:# server id 1 end_log_pos 4800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4800
+#010909 #:#:# server id 1 end_log_pos 4868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4868
+# at 4909
+#010909 #:#:# server id 1 end_log_pos 4909 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4940 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4940
+#010909 #:#:# server id 1 end_log_pos 5009 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5009
+#010909 #:#:# server id 1 end_log_pos 5077 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5077
+# at 5118
+#010909 #:#:# server id 1 end_log_pos 5118 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5152 Update_rows: table id 27 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5152
+#010909 #:#:# server id 1 end_log_pos 5221 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5221
+#010909 #:#:# server id 1 end_log_pos 5289 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5289
+# at 5330
+#010909 #:#:# server id 1 end_log_pos 5330 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5361 Delete_rows: table id 27 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5361
+#010909 #:#:# server id 1 end_log_pos 5430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5430
+#010909 #:#:# server id 1 end_log_pos 5506 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 5506
+#010909 #:#:# server id 1 end_log_pos 5607 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c04 TINYINT UNSIGNED)
+/*!*/;
+# at 5607
+#010909 #:#:# server id 1 end_log_pos 5675 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5675
+# at 5716
+#010909 #:#:# server id 1 end_log_pos 5716 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5749 Write_rows: table id 28 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5749
+#010909 #:#:# server id 1 end_log_pos 5818 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5818
+#010909 #:#:# server id 1 end_log_pos 5886 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5886
+# at 5927
+#010909 #:#:# server id 1 end_log_pos 5927 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5958 Delete_rows: table id 28 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5958
+#010909 #:#:# server id 1 end_log_pos 6027 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6027
+#010909 #:#:# server id 1 end_log_pos 6103 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6103
+#010909 #:#:# server id 1 end_log_pos 6192 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c06 BOOL)
+/*!*/;
+# at 6192
+#010909 #:#:# server id 1 end_log_pos 6260 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6260
+# at 6301
+#010909 #:#:# server id 1 end_log_pos 6301 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6332 Write_rows: table id 29 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6332
+#010909 #:#:# server id 1 end_log_pos 6401 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6401
+#010909 #:#:# server id 1 end_log_pos 6469 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6469
+# at 6510
+#010909 #:#:# server id 1 end_log_pos 6510 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6541 Delete_rows: table id 29 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6541
+#010909 #:#:# server id 1 end_log_pos 6610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6610
+#010909 #:#:# server id 1 end_log_pos 6686 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6686
+#010909 #:#:# server id 1 end_log_pos 6779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c07 SMALLINT)
+/*!*/;
+# at 6779
+#010909 #:#:# server id 1 end_log_pos 6847 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6847
+# at 6888
+#010909 #:#:# server id 1 end_log_pos 6888 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 6920 Write_rows: table id 30 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 6920
+#010909 #:#:# server id 1 end_log_pos 6989 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6989
+#010909 #:#:# server id 1 end_log_pos 7057 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7057
+# at 7098
+#010909 #:#:# server id 1 end_log_pos 7098 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 7130 Delete_rows: table id 30 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7130
+#010909 #:#:# server id 1 end_log_pos 7199 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7199
+#010909 #:#:# server id 1 end_log_pos 7275 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 7275
+#010909 #:#:# server id 1 end_log_pos 7377 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c08 SMALLINT UNSIGNED)
+/*!*/;
+# at 7377
+#010909 #:#:# server id 1 end_log_pos 7445 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7445
+# at 7486
+#010909 #:#:# server id 1 end_log_pos 7486 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7521 Write_rows: table id 31 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7521
+#010909 #:#:# server id 1 end_log_pos 7590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7590
+#010909 #:#:# server id 1 end_log_pos 7658 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7658
+# at 7699
+#010909 #:#:# server id 1 end_log_pos 7699 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7735 Update_rows: table id 31 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7735
+#010909 #:#:# server id 1 end_log_pos 7804 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7804
+#010909 #:#:# server id 1 end_log_pos 7872 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7872
+# at 7913
+#010909 #:#:# server id 1 end_log_pos 7913 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7945 Delete_rows: table id 31 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7945
+#010909 #:#:# server id 1 end_log_pos 8014 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8014
+#010909 #:#:# server id 1 end_log_pos 8090 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8090
+#010909 #:#:# server id 1 end_log_pos 8184 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c10 MEDIUMINT)
+/*!*/;
+# at 8184
+#010909 #:#:# server id 1 end_log_pos 8252 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8252
+# at 8293
+#010909 #:#:# server id 1 end_log_pos 8293 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8326 Write_rows: table id 32 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8326
+#010909 #:#:# server id 1 end_log_pos 8395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8395
+#010909 #:#:# server id 1 end_log_pos 8463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8463
+# at 8504
+#010909 #:#:# server id 1 end_log_pos 8504 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8537 Delete_rows: table id 32 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8537
+#010909 #:#:# server id 1 end_log_pos 8606 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8606
+#010909 #:#:# server id 1 end_log_pos 8682 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8682
+#010909 #:#:# server id 1 end_log_pos 8785 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c11 MEDIUMINT UNSIGNED)
+/*!*/;
+# at 8785
+#010909 #:#:# server id 1 end_log_pos 8853 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8853
+# at 8894
+#010909 #:#:# server id 1 end_log_pos 8894 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 8931 Write_rows: table id 33 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8931
+#010909 #:#:# server id 1 end_log_pos 9000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9000
+#010909 #:#:# server id 1 end_log_pos 9068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9068
+# at 9109
+#010909 #:#:# server id 1 end_log_pos 9109 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9147 Update_rows: table id 33 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9147
+#010909 #:#:# server id 1 end_log_pos 9216 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9216
+#010909 #:#:# server id 1 end_log_pos 9284 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9284
+# at 9325
+#010909 #:#:# server id 1 end_log_pos 9325 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9358 Delete_rows: table id 33 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9358
+#010909 #:#:# server id 1 end_log_pos 9427 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9427
+#010909 #:#:# server id 1 end_log_pos 9503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 9503
+#010909 #:#:# server id 1 end_log_pos 9591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c13 INT)
+/*!*/;
+# at 9591
+#010909 #:#:# server id 1 end_log_pos 9659 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9659
+# at 9700
+#010909 #:#:# server id 1 end_log_pos 9700 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9734 Write_rows: table id 34 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9734
+#010909 #:#:# server id 1 end_log_pos 9803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9803
+#010909 #:#:# server id 1 end_log_pos 9871 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9871
+# at 9912
+#010909 #:#:# server id 1 end_log_pos 9912 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9946 Delete_rows: table id 34 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9946
+#010909 #:#:# server id 1 end_log_pos 10015 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10015
+#010909 #:#:# server id 1 end_log_pos 10091 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10091
+#010909 #:#:# server id 1 end_log_pos 10188 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c14 INT UNSIGNED)
+/*!*/;
+# at 10188
+#010909 #:#:# server id 1 end_log_pos 10256 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10256
+# at 10297
+#010909 #:#:# server id 1 end_log_pos 10297 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10336 Write_rows: table id 35 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10336
+#010909 #:#:# server id 1 end_log_pos 10405 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10405
+#010909 #:#:# server id 1 end_log_pos 10473 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10473
+# at 10514
+#010909 #:#:# server id 1 end_log_pos 10514 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10554 Update_rows: table id 35 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* INT meta=0 nullable=1 is_null=0 */
+# at 10554
+#010909 #:#:# server id 1 end_log_pos 10623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10623
+#010909 #:#:# server id 1 end_log_pos 10691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10691
+# at 10732
+#010909 #:#:# server id 1 end_log_pos 10732 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10766 Delete_rows: table id 35 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10766
+#010909 #:#:# server id 1 end_log_pos 10835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10835
+#010909 #:#:# server id 1 end_log_pos 10911 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10911
+#010909 #:#:# server id 1 end_log_pos 11002 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c16 BIGINT)
+/*!*/;
+# at 11002
+#010909 #:#:# server id 1 end_log_pos 11070 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11070
+# at 11111
+#010909 #:#:# server id 1 end_log_pos 11111 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11149 Write_rows: table id 36 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11149
+#010909 #:#:# server id 1 end_log_pos 11218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11218
+#010909 #:#:# server id 1 end_log_pos 11286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11286
+# at 11327
+#010909 #:#:# server id 1 end_log_pos 11327 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11365 Delete_rows: table id 36 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11365
+#010909 #:#:# server id 1 end_log_pos 11434 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11434
+#010909 #:#:# server id 1 end_log_pos 11510 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 11510
+#010909 #:#:# server id 1 end_log_pos 11610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c17 BIGINT UNSIGNED)
+/*!*/;
+# at 11610
+#010909 #:#:# server id 1 end_log_pos 11678 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11678
+# at 11719
+#010909 #:#:# server id 1 end_log_pos 11719 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11766 Write_rows: table id 37 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11766
+#010909 #:#:# server id 1 end_log_pos 11835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11835
+#010909 #:#:# server id 1 end_log_pos 11903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11903
+# at 11944
+#010909 #:#:# server id 1 end_log_pos 11944 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11992 Update_rows: table id 37 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11992
+#010909 #:#:# server id 1 end_log_pos 12061 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12061
+#010909 #:#:# server id 1 end_log_pos 12129 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12129
+# at 12170
+#010909 #:#:# server id 1 end_log_pos 12170 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 12208 Delete_rows: table id 37 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 12208
+#010909 #:#:# server id 1 end_log_pos 12277 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12277
+#010909 #:#:# server id 1 end_log_pos 12353 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12353
+#010909 #:#:# server id 1 end_log_pos 12443 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c19 FLOAT)
+/*!*/;
+# at 12443
+#010909 #:#:# server id 1 end_log_pos 12511 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12511
+# at 12553
+#010909 #:#:# server id 1 end_log_pos 12553 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12587 Write_rows: table id 38 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12587
+#010909 #:#:# server id 1 end_log_pos 12656 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12656
+#010909 #:#:# server id 1 end_log_pos 12724 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12724
+# at 12766
+#010909 #:#:# server id 1 end_log_pos 12766 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12800 Delete_rows: table id 38 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12800
+#010909 #:#:# server id 1 end_log_pos 12869 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12869
+#010909 #:#:# server id 1 end_log_pos 12945 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12945
+#010909 #:#:# server id 1 end_log_pos 13036 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c22 DOUBLE)
+/*!*/;
+# at 13036
+#010909 #:#:# server id 1 end_log_pos 13104 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13104
+# at 13146
+#010909 #:#:# server id 1 end_log_pos 13146 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13184 Write_rows: table id 39 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13184
+#010909 #:#:# server id 1 end_log_pos 13253 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13253
+#010909 #:#:# server id 1 end_log_pos 13321 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13321
+# at 13363
+#010909 #:#:# server id 1 end_log_pos 13363 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13401 Delete_rows: table id 39 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13401
+#010909 #:#:# server id 1 end_log_pos 13470 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13470
+#010909 #:#:# server id 1 end_log_pos 13546 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 13546
+#010909 #:#:# server id 1 end_log_pos 13644 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c25 DECIMAL(10,5))
+/*!*/;
+# at 13644
+#010909 #:#:# server id 1 end_log_pos 13712 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13712
+# at 13755
+#010909 #:#:# server id 1 end_log_pos 13755 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 13791 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 13791
+#010909 #:#:# server id 1 end_log_pos 13860 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13860
+#010909 #:#:# server id 1 end_log_pos 13928 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13928
+# at 13971
+#010909 #:#:# server id 1 end_log_pos 13971 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14007 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-000000543.210000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14007
+#010909 #:#:# server id 1 end_log_pos 14076 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14076
+#010909 #:#:# server id 1 end_log_pos 14144 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14144
+# at 14187
+#010909 #:#:# server id 1 end_log_pos 14187 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14223 Delete_rows: table id 40 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14223
+#010909 #:#:# server id 1 end_log_pos 14292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14292
+#010909 #:#:# server id 1 end_log_pos 14368 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14368
+#010909 #:#:# server id 1 end_log_pos 14457 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c28 DATE)
+/*!*/;
+# at 14457
+#010909 #:#:# server id 1 end_log_pos 14525 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14525
+# at 14566
+#010909 #:#:# server id 1 end_log_pos 14566 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14599 Write_rows: table id 41 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14599
+#010909 #:#:# server id 1 end_log_pos 14668 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14668
+#010909 #:#:# server id 1 end_log_pos 14736 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14736
+# at 14777
+#010909 #:#:# server id 1 end_log_pos 14777 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14810 Delete_rows: table id 41 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14810
+#010909 #:#:# server id 1 end_log_pos 14879 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14879
+#010909 #:#:# server id 1 end_log_pos 14955 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14955
+#010909 #:#:# server id 1 end_log_pos 15048 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c29 DATETIME)
+/*!*/;
+# at 15048
+#010909 #:#:# server id 1 end_log_pos 15116 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15116
+# at 15157
+#010909 #:#:# server id 1 end_log_pos 15157 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15195 Write_rows: table id 42 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15195
+#010909 #:#:# server id 1 end_log_pos 15264 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15264
+#010909 #:#:# server id 1 end_log_pos 15332 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15332
+# at 15373
+#010909 #:#:# server id 1 end_log_pos 15373 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15411 Delete_rows: table id 42 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15411
+#010909 #:#:# server id 1 end_log_pos 15480 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15480
+#010909 #:#:# server id 1 end_log_pos 15556 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 15556
+#010909 #:#:# server id 1 end_log_pos 15650 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c30 TIMESTAMP)
+/*!*/;
+# at 15650
+#010909 #:#:# server id 1 end_log_pos 15726 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.time_zone='SYSTEM'/*!*/;
+BEGIN
+/*!*/;
+# at 15726
+# at 15767
+#010909 #:#:# server id 1 end_log_pos 15767 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 15801 Write_rows: table id 43 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 15801
+#010909 #:#:# server id 1 end_log_pos 15878 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15878
+#010909 #:#:# server id 1 end_log_pos 15954 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15954
+# at 15995
+#010909 #:#:# server id 1 end_log_pos 15995 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 16029 Delete_rows: table id 43 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 16029
+#010909 #:#:# server id 1 end_log_pos 16106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16106
+#010909 #:#:# server id 1 end_log_pos 16182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16182
+#010909 #:#:# server id 1 end_log_pos 16271 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c31 TIME)
+/*!*/;
+# at 16271
+#010909 #:#:# server id 1 end_log_pos 16339 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16339
+# at 16380
+#010909 #:#:# server id 1 end_log_pos 16380 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16413 Write_rows: table id 44 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16413
+#010909 #:#:# server id 1 end_log_pos 16482 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16482
+#010909 #:#:# server id 1 end_log_pos 16550 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16550
+# at 16591
+#010909 #:#:# server id 1 end_log_pos 16591 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16624 Delete_rows: table id 44 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16624
+#010909 #:#:# server id 1 end_log_pos 16693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16693
+#010909 #:#:# server id 1 end_log_pos 16769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16769
+#010909 #:#:# server id 1 end_log_pos 16858 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c32 YEAR)
+/*!*/;
+# at 16858
+#010909 #:#:# server id 1 end_log_pos 16926 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16926
+# at 16967
+#010909 #:#:# server id 1 end_log_pos 16967 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 16998 Write_rows: table id 45 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 16998
+#010909 #:#:# server id 1 end_log_pos 17067 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17067
+#010909 #:#:# server id 1 end_log_pos 17135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17135
+# at 17176
+#010909 #:#:# server id 1 end_log_pos 17176 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 17207 Delete_rows: table id 45 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 17207
+#010909 #:#:# server id 1 end_log_pos 17276 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17276
+#010909 #:#:# server id 1 end_log_pos 17352 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17352
+#010909 #:#:# server id 1 end_log_pos 17441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c33 CHAR)
+/*!*/;
+# at 17441
+#010909 #:#:# server id 1 end_log_pos 17509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17509
+# at 17552
+#010909 #:#:# server id 1 end_log_pos 17552 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17584 Write_rows: table id 46 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17584
+#010909 #:#:# server id 1 end_log_pos 17653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17653
+#010909 #:#:# server id 1 end_log_pos 17721 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17721
+# at 17764
+#010909 #:#:# server id 1 end_log_pos 17764 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17796 Delete_rows: table id 46 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17796
+#010909 #:#:# server id 1 end_log_pos 17865 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17865
+#010909 #:#:# server id 1 end_log_pos 17941 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17941
+#010909 #:#:# server id 1 end_log_pos 18033 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c34 CHAR(0))
+/*!*/;
+# at 18033
+#010909 #:#:# server id 1 end_log_pos 18101 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18101
+# at 18144
+#010909 #:#:# server id 1 end_log_pos 18144 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18175 Write_rows: table id 47 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18175
+#010909 #:#:# server id 1 end_log_pos 18244 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18244
+#010909 #:#:# server id 1 end_log_pos 18312 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18312
+# at 18355
+#010909 #:#:# server id 1 end_log_pos 18355 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18386 Delete_rows: table id 47 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18386
+#010909 #:#:# server id 1 end_log_pos 18455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18455
+#010909 #:#:# server id 1 end_log_pos 18531 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 18531
+#010909 #:#:# server id 1 end_log_pos 18623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c35 CHAR(1))
+/*!*/;
+# at 18623
+#010909 #:#:# server id 1 end_log_pos 18691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18691
+# at 18734
+#010909 #:#:# server id 1 end_log_pos 18734 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18766 Write_rows: table id 48 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18766
+#010909 #:#:# server id 1 end_log_pos 18835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18835
+#010909 #:#:# server id 1 end_log_pos 18903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18903
+# at 18946
+#010909 #:#:# server id 1 end_log_pos 18946 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18978 Delete_rows: table id 48 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18978
+#010909 #:#:# server id 1 end_log_pos 19047 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19047
+#010909 #:#:# server id 1 end_log_pos 19123 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 19123
+#010909 #:#:# server id 1 end_log_pos 19217 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c36 CHAR(255))
+/*!*/;
+# at 19217
+#010909 #:#:# server id 1 end_log_pos 19285 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19285
+# at 19328
+#010909 #:#:# server id 1 end_log_pos 19328 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 19614 Write_rows: table id 49 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 19614
+#010909 #:#:# server id 1 end_log_pos 19683 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19683
+#010909 #:#:# server id 1 end_log_pos 19751 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19751
+# at 19794
+#010909 #:#:# server id 1 end_log_pos 19794 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 20080 Delete_rows: table id 49 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 20080
+#010909 #:#:# server id 1 end_log_pos 20149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20149
+#010909 #:#:# server id 1 end_log_pos 20225 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20225
+#010909 #:#:# server id 1 end_log_pos 20323 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c37 NATIONAL CHAR)
+/*!*/;
+# at 20323
+#010909 #:#:# server id 1 end_log_pos 20391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20391
+# at 20434
+#010909 #:#:# server id 1 end_log_pos 20434 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20466 Write_rows: table id 50 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20466
+#010909 #:#:# server id 1 end_log_pos 20535 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20535
+#010909 #:#:# server id 1 end_log_pos 20603 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20603
+# at 20646
+#010909 #:#:# server id 1 end_log_pos 20646 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20678 Delete_rows: table id 50 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20678
+#010909 #:#:# server id 1 end_log_pos 20747 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20747
+#010909 #:#:# server id 1 end_log_pos 20823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20823
+#010909 #:#:# server id 1 end_log_pos 20924 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c38 NATIONAL CHAR(0))
+/*!*/;
+# at 20924
+#010909 #:#:# server id 1 end_log_pos 20992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20992
+# at 21035
+#010909 #:#:# server id 1 end_log_pos 21035 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21066 Write_rows: table id 51 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21066
+#010909 #:#:# server id 1 end_log_pos 21135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21135
+#010909 #:#:# server id 1 end_log_pos 21203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21203
+# at 21246
+#010909 #:#:# server id 1 end_log_pos 21246 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21277 Delete_rows: table id 51 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21277
+#010909 #:#:# server id 1 end_log_pos 21346 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21346
+#010909 #:#:# server id 1 end_log_pos 21422 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 21422
+#010909 #:#:# server id 1 end_log_pos 21523 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c39 NATIONAL CHAR(1))
+/*!*/;
+# at 21523
+#010909 #:#:# server id 1 end_log_pos 21591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21591
+# at 21634
+#010909 #:#:# server id 1 end_log_pos 21634 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21666 Write_rows: table id 52 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21666
+#010909 #:#:# server id 1 end_log_pos 21735 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21735
+#010909 #:#:# server id 1 end_log_pos 21803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21803
+# at 21846
+#010909 #:#:# server id 1 end_log_pos 21846 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21878 Delete_rows: table id 52 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21878
+#010909 #:#:# server id 1 end_log_pos 21947 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21947
+#010909 #:#:# server id 1 end_log_pos 22023 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 22023
+#010909 #:#:# server id 1 end_log_pos 22126 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c40 NATIONAL CHAR(255))
+/*!*/;
+# at 22126
+#010909 #:#:# server id 1 end_log_pos 22194 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22194
+# at 22237
+#010909 #:#:# server id 1 end_log_pos 22237 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 22524 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 22524
+#010909 #:#:# server id 1 end_log_pos 22593 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 22593
+#010909 #:#:# server id 1 end_log_pos 22661 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22661
+# at 22704
+#010909 #:#:# server id 1 end_log_pos 22704 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 23246 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 23246
+#010909 #:#:# server id 1 end_log_pos 23315 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 23315
+#010909 #:#:# server id 1 end_log_pos 23383 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 23383
+# at 23426
+#010909 #:#:# server id 1 end_log_pos 23426 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 24226 Delete_rows: table id 53 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßG(765) meta=57085 nullable=1 is_null=0 */
+# at 24226
+#010909 #:#:# server id 1 end_log_pos 24295 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24295
+#010909 #:#:# server id 1 end_log_pos 24371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24371
+#010909 #:#:# server id 1 end_log_pos 24479 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c41 CHAR CHARACTER SET UCS2)
+/*!*/;
+# at 24479
+#010909 #:#:# server id 1 end_log_pos 24547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24547
+# at 24590
+#010909 #:#:# server id 1 end_log_pos 24590 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24623 Write_rows: table id 54 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24623
+#010909 #:#:# server id 1 end_log_pos 24692 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24692
+#010909 #:#:# server id 1 end_log_pos 24760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24760
+# at 24803
+#010909 #:#:# server id 1 end_log_pos 24803 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24836 Delete_rows: table id 54 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24836
+#010909 #:#:# server id 1 end_log_pos 24905 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24905
+#010909 #:#:# server id 1 end_log_pos 24981 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24981
+#010909 #:#:# server id 1 end_log_pos 25092 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c42 CHAR(0) CHARACTER SET UCS2)
+/*!*/;
+# at 25092
+#010909 #:#:# server id 1 end_log_pos 25160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25160
+# at 25203
+#010909 #:#:# server id 1 end_log_pos 25203 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25234 Write_rows: table id 55 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25234
+#010909 #:#:# server id 1 end_log_pos 25303 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25303
+#010909 #:#:# server id 1 end_log_pos 25371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25371
+# at 25414
+#010909 #:#:# server id 1 end_log_pos 25414 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25445 Delete_rows: table id 55 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25445
+#010909 #:#:# server id 1 end_log_pos 25514 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25514
+#010909 #:#:# server id 1 end_log_pos 25590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 25590
+#010909 #:#:# server id 1 end_log_pos 25701 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c43 CHAR(1) CHARACTER SET UCS2)
+/*!*/;
+# at 25701
+#010909 #:#:# server id 1 end_log_pos 25769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25769
+# at 25812
+#010909 #:#:# server id 1 end_log_pos 25812 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 25845 Write_rows: table id 56 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 25845
+#010909 #:#:# server id 1 end_log_pos 25914 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25914
+#010909 #:#:# server id 1 end_log_pos 25982 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25982
+# at 26025
+#010909 #:#:# server id 1 end_log_pos 26025 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 26058 Delete_rows: table id 56 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 26058
+#010909 #:#:# server id 1 end_log_pos 26127 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 26127
+#010909 #:#:# server id 1 end_log_pos 26203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 26203
+#010909 #:#:# server id 1 end_log_pos 26316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c44 CHAR(255) CHARACTER SET UCS2)
+/*!*/;
+# at 26316
+#010909 #:#:# server id 1 end_log_pos 26384 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 26384
+# at 26427
+#010909 #:#:# server id 1 end_log_pos 26427 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 26969 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 26969
+#010909 #:#:# server id 1 end_log_pos 27038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27038
+#010909 #:#:# server id 1 end_log_pos 27106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27106
+# at 27149
+#010909 #:#:# server id 1 end_log_pos 27149 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 27691 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00� /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 27691
+#010909 #:#:# server id 1 end_log_pos 27760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27760
+#010909 #:#:# server id 1 end_log_pos 27828 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27828
+# at 27871
+# at 28413
+#010909 #:#:# server id 1 end_log_pos 27871 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 28413 Delete_rows: table id 57
+#010909 #:#:# server id 1 end_log_pos 28955 Delete_rows: table id 57 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x00a=61182 nullable=1 is_null=0 */
+# at 28955
+#010909 #:#:# server id 1 end_log_pos 29024 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29024
+#010909 #:#:# server id 1 end_log_pos 29100 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29100
+#010909 #:#:# server id 1 end_log_pos 29195 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c45 VARCHAR(0))
+/*!*/;
+# at 29195
+#010909 #:#:# server id 1 end_log_pos 29263 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29263
+# at 29306
+#010909 #:#:# server id 1 end_log_pos 29306 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29337 Write_rows: table id 58 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29337
+#010909 #:#:# server id 1 end_log_pos 29406 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29406
+#010909 #:#:# server id 1 end_log_pos 29474 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29474
+# at 29517
+#010909 #:#:# server id 1 end_log_pos 29517 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29548 Delete_rows: table id 58 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29548
+#010909 #:#:# server id 1 end_log_pos 29617 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29617
+#010909 #:#:# server id 1 end_log_pos 29693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29693
+#010909 #:#:# server id 1 end_log_pos 29788 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c46 VARCHAR(1))
+/*!*/;
+# at 29788
+#010909 #:#:# server id 1 end_log_pos 29856 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29856
+# at 29899
+#010909 #:#:# server id 1 end_log_pos 29899 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 29931 Write_rows: table id 59 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 29931
+#010909 #:#:# server id 1 end_log_pos 30000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30000
+#010909 #:#:# server id 1 end_log_pos 30068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30068
+# at 30111
+#010909 #:#:# server id 1 end_log_pos 30111 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 30143 Delete_rows: table id 59 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 30143
+#010909 #:#:# server id 1 end_log_pos 30212 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30212
+#010909 #:#:# server id 1 end_log_pos 30288 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 30288
+#010909 #:#:# server id 1 end_log_pos 30385 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c47 VARCHAR(255))
+/*!*/;
+# at 30385
+#010909 #:#:# server id 1 end_log_pos 30453 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30453
+# at 30496
+#010909 #:#:# server id 1 end_log_pos 30496 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 30782 Write_rows: table id 60 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 30782
+#010909 #:#:# server id 1 end_log_pos 30851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30851
+#010909 #:#:# server id 1 end_log_pos 30919 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30919
+# at 30962
+#010909 #:#:# server id 1 end_log_pos 30962 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 31248 Delete_rows: table id 60 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 31248
+#010909 #:#:# server id 1 end_log_pos 31317 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31317
+#010909 #:#:# server id 1 end_log_pos 31393 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 31393
+#010909 #:#:# server id 1 end_log_pos 31490 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c48 VARCHAR(261))
+/*!*/;
+# at 31490
+#010909 #:#:# server id 1 end_log_pos 31558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 31558
+# at 31601
+#010909 #:#:# server id 1 end_log_pos 31601 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 31894 Write_rows: table id 61 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 31894
+#010909 #:#:# server id 1 end_log_pos 31963 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31963
+#010909 #:#:# server id 1 end_log_pos 32031 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32031
+# at 32074
+#010909 #:#:# server id 1 end_log_pos 32074 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 32367 Delete_rows: table id 61 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 32367
+#010909 #:#:# server id 1 end_log_pos 32436 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32436
+#010909 #:#:# server id 1 end_log_pos 32512 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 32512
+#010909 #:#:# server id 1 end_log_pos 32616 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c49 NATIONAL VARCHAR(0))
+/*!*/;
+# at 32616
+#010909 #:#:# server id 1 end_log_pos 32684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32684
+# at 32727
+#010909 #:#:# server id 1 end_log_pos 32727 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32758 Write_rows: table id 62 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32758
+#010909 #:#:# server id 1 end_log_pos 32827 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32827
+#010909 #:#:# server id 1 end_log_pos 32895 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32895
+# at 32938
+#010909 #:#:# server id 1 end_log_pos 32938 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32969 Delete_rows: table id 62 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32969
+#010909 #:#:# server id 1 end_log_pos 33038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33038
+#010909 #:#:# server id 1 end_log_pos 33114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33114
+#010909 #:#:# server id 1 end_log_pos 33218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c50 NATIONAL VARCHAR(1))
+/*!*/;
+# at 33218
+#010909 #:#:# server id 1 end_log_pos 33286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33286
+# at 33329
+#010909 #:#:# server id 1 end_log_pos 33329 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33361 Write_rows: table id 63 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33361
+#010909 #:#:# server id 1 end_log_pos 33430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33430
+#010909 #:#:# server id 1 end_log_pos 33498 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33498
+# at 33541
+#010909 #:#:# server id 1 end_log_pos 33541 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33573 Delete_rows: table id 63 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33573
+#010909 #:#:# server id 1 end_log_pos 33642 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33642
+#010909 #:#:# server id 1 end_log_pos 33718 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33718
+#010909 #:#:# server id 1 end_log_pos 33824 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c51 NATIONAL VARCHAR(255))
+/*!*/;
+# at 33824
+#010909 #:#:# server id 1 end_log_pos 33892 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33892
+# at 33935
+#010909 #:#:# server id 1 end_log_pos 33935 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34222 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+# at 34222
+#010909 #:#:# server id 1 end_log_pos 34291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 34291
+#010909 #:#:# server id 1 end_log_pos 34359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 34359
+# at 34402
+#010909 #:#:# server id 1 end_log_pos 34402 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34944 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß# at 34944
+#010909 #:#:# server id 1 end_log_pos 35013 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35013
+#010909 #:#:# server id 1 end_log_pos 35081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 35081
+# at 35124
+#010909 #:#:# server id 1 end_log_pos 35124 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 35924 Delete_rows: table id 64 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+# at 35924
+#010909 #:#:# server id 1 end_log_pos 35993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35993
+#010909 #:#:# server id 1 end_log_pos 36069 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 36069
+#010909 #:#:# server id 1 end_log_pos 36175 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c52 NATIONAL VARCHAR(261))
+/*!*/;
+# at 36175
+#010909 #:#:# server id 1 end_log_pos 36243 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36243
+# at 36286
+#010909 #:#:# server id 1 end_log_pos 36286 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 36579 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+# at 36579
+#010909 #:#:# server id 1 end_log_pos 36648 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 36648
+#010909 #:#:# server id 1 end_log_pos 36716 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36716
+# at 36759
+#010909 #:#:# server id 1 end_log_pos 36759 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 37313 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+# at 37313
+#010909 #:#:# server id 1 end_log_pos 37382 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 37382
+#010909 #:#:# server id 1 end_log_pos 37450 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 37450
+# at 37493
+#010909 #:#:# server id 1 end_log_pos 37493 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 38311 Delete_rows: table id 65 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßat 38311
+#010909 #:#:# server id 1 end_log_pos 38380 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38380
+#010909 #:#:# server id 1 end_log_pos 38456 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 38456
+#010909 #:#:# server id 1 end_log_pos 38570 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c53 VARCHAR(0) CHARACTER SET ucs2)
+/*!*/;
+# at 38570
+#010909 #:#:# server id 1 end_log_pos 38638 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38638
+# at 38681
+#010909 #:#:# server id 1 end_log_pos 38681 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38712 Write_rows: table id 66 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38712
+#010909 #:#:# server id 1 end_log_pos 38781 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38781
+#010909 #:#:# server id 1 end_log_pos 38849 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38849
+# at 38892
+#010909 #:#:# server id 1 end_log_pos 38892 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38923 Delete_rows: table id 66 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38923
+#010909 #:#:# server id 1 end_log_pos 38992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38992
+#010909 #:#:# server id 1 end_log_pos 39068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39068
+#010909 #:#:# server id 1 end_log_pos 39182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c54 VARCHAR(1) CHARACTER SET ucs2)
+/*!*/;
+# at 39182
+#010909 #:#:# server id 1 end_log_pos 39250 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39250
+# at 39293
+#010909 #:#:# server id 1 end_log_pos 39293 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39326 Write_rows: table id 67 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39326
+#010909 #:#:# server id 1 end_log_pos 39395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39395
+#010909 #:#:# server id 1 end_log_pos 39463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39463
+# at 39506
+#010909 #:#:# server id 1 end_log_pos 39506 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39539 Delete_rows: table id 67 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39539
+#010909 #:#:# server id 1 end_log_pos 39608 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39608
+#010909 #:#:# server id 1 end_log_pos 39684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39684
+#010909 #:#:# server id 1 end_log_pos 39800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c55 VARCHAR(255) CHARACTER SET ucs2)
+/*!*/;
+# at 39800
+#010909 #:#:# server id 1 end_log_pos 39868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39868
+# at 39911
+#010909 #:#:# server id 1 end_log_pos 39911 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 40451 Write_rows: table id 68 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 40451
+#010909 #:#:# server id 1 end_log_pos 40520 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 40520
+#010909 #:#:# server id 1 end_log_pos 40588 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 40588
+# at 40631
+#010909 #:#:# server id 1 end_log_pos 40631 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 41171 Delete_rows: table id 68 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 41171
+#010909 #:#:# server id 1 end_log_pos 41240 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 41240
+#010909 #:#:# server id 1 end_log_pos 41316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 41316
+#010909 #:#:# server id 1 end_log_pos 41432 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c56 VARCHAR(261) CHARACTER SET ucs2)
+/*!*/;
+# at 41432
+#010909 #:#:# server id 1 end_log_pos 41500 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 41500
+# at 41543
+#010909 #:#:# server id 1 end_log_pos 41543 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42095 Write_rows: table id 69 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42095
+#010909 #:#:# server id 1 end_log_pos 42164 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42164
+#010909 #:#:# server id 1 end_log_pos 42232 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 42232
+# at 42275
+#010909 #:#:# server id 1 end_log_pos 42275 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42827 Delete_rows: table id 69 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42827
+#010909 #:#:# server id 1 end_log_pos 42896 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42896
+#010909 #:#:# server id 1 end_log_pos 42972 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 42972
+#010909 #:#:# server id 1 end_log_pos 43063 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c57 BINARY)
+/*!*/;
+# at 43063
+#010909 #:#:# server id 1 end_log_pos 43131 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43131
+# at 43174
+#010909 #:#:# server id 1 end_log_pos 43174 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43205 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43205
+#010909 #:#:# server id 1 end_log_pos 43274 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43274
+#010909 #:#:# server id 1 end_log_pos 43342 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43342
+# at 43385
+#010909 #:#:# server id 1 end_log_pos 43385 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43417 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43417
+#010909 #:#:# server id 1 end_log_pos 43486 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43486
+#010909 #:#:# server id 1 end_log_pos 43554 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43554
+# at 43597
+#010909 #:#:# server id 1 end_log_pos 43597 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43629 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43629
+#010909 #:#:# server id 1 end_log_pos 43698 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43698
+#010909 #:#:# server id 1 end_log_pos 43766 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43766
+# at 43809
+#010909 #:#:# server id 1 end_log_pos 43809 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43841 Delete_rows: table id 70 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43841
+#010909 #:#:# server id 1 end_log_pos 43910 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43910
+#010909 #:#:# server id 1 end_log_pos 43986 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 43986
+#010909 #:#:# server id 1 end_log_pos 44080 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c58 BINARY(0))
+/*!*/;
+# at 44080
+#010909 #:#:# server id 1 end_log_pos 44148 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44148
+# at 44191
+#010909 #:#:# server id 1 end_log_pos 44191 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44222 Write_rows: table id 71 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44222
+#010909 #:#:# server id 1 end_log_pos 44291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44291
+#010909 #:#:# server id 1 end_log_pos 44359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44359
+# at 44402
+#010909 #:#:# server id 1 end_log_pos 44402 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44433 Delete_rows: table id 71 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44433
+#010909 #:#:# server id 1 end_log_pos 44502 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44502
+#010909 #:#:# server id 1 end_log_pos 44578 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 44578
+#010909 #:#:# server id 1 end_log_pos 44672 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c59 BINARY(1))
+/*!*/;
+# at 44672
+#010909 #:#:# server id 1 end_log_pos 44740 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44740
+# at 44783
+#010909 #:#:# server id 1 end_log_pos 44783 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 44814 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 44814
+#010909 #:#:# server id 1 end_log_pos 44883 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44883
+#010909 #:#:# server id 1 end_log_pos 44951 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44951
+# at 44994
+#010909 #:#:# server id 1 end_log_pos 44994 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45026 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45026
+#010909 #:#:# server id 1 end_log_pos 45095 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45095
+#010909 #:#:# server id 1 end_log_pos 45163 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45163
+# at 45206
+#010909 #:#:# server id 1 end_log_pos 45206 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45238 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45238
+#010909 #:#:# server id 1 end_log_pos 45307 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45307
+#010909 #:#:# server id 1 end_log_pos 45375 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45375
+# at 45418
+#010909 #:#:# server id 1 end_log_pos 45418 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45450 Delete_rows: table id 72 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45450
+#010909 #:#:# server id 1 end_log_pos 45519 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45519
+#010909 #:#:# server id 1 end_log_pos 45595 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 45595
+#010909 #:#:# server id 1 end_log_pos 45691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c60 BINARY(255))
+/*!*/;
+# at 45691
+#010909 #:#:# server id 1 end_log_pos 45759 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45759
+# at 45802
+#010909 #:#:# server id 1 end_log_pos 45802 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 45833 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 45833
+#010909 #:#:# server id 1 end_log_pos 45902 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45902
+#010909 #:#:# server id 1 end_log_pos 45970 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45970
+# at 46013
+#010909 #:#:# server id 1 end_log_pos 46013 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46045 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46045
+#010909 #:#:# server id 1 end_log_pos 46114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46114
+#010909 #:#:# server id 1 end_log_pos 46182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46182
+# at 46225
+#010909 #:#:# server id 1 end_log_pos 46225 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46495 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46495
+#010909 #:#:# server id 1 end_log_pos 46564 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46564
+#010909 #:#:# server id 1 end_log_pos 46632 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46632
+# at 46675
+#010909 #:#:# server id 1 end_log_pos 46675 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46706 Delete_rows: table id 73 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46706
+#010909 #:#:# server id 1 end_log_pos 46775 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46775
+#010909 #:#:# server id 1 end_log_pos 46851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 46851
+#010909 #:#:# server id 1 end_log_pos 46948 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c61 VARBINARY(0))
+/*!*/;
+# at 46948
+#010909 #:#:# server id 1 end_log_pos 47016 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47016
+# at 47059
+#010909 #:#:# server id 1 end_log_pos 47059 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47090 Write_rows: table id 74 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47090
+#010909 #:#:# server id 1 end_log_pos 47159 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47159
+#010909 #:#:# server id 1 end_log_pos 47227 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47227
+# at 47270
+#010909 #:#:# server id 1 end_log_pos 47270 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47301 Delete_rows: table id 74 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47301
+#010909 #:#:# server id 1 end_log_pos 47370 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47370
+#010909 #:#:# server id 1 end_log_pos 47446 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 47446
+#010909 #:#:# server id 1 end_log_pos 47543 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c62 VARBINARY(1))
+/*!*/;
+# at 47543
+#010909 #:#:# server id 1 end_log_pos 47611 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47611
+# at 47654
+#010909 #:#:# server id 1 end_log_pos 47654 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47686 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47686
+#010909 #:#:# server id 1 end_log_pos 47755 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47755
+#010909 #:#:# server id 1 end_log_pos 47823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47823
+# at 47866
+#010909 #:#:# server id 1 end_log_pos 47866 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47898 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47898
+#010909 #:#:# server id 1 end_log_pos 47967 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47967
+#010909 #:#:# server id 1 end_log_pos 48035 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48035
+# at 48078
+#010909 #:#:# server id 1 end_log_pos 48078 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48110 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48110
+#010909 #:#:# server id 1 end_log_pos 48179 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48179
+#010909 #:#:# server id 1 end_log_pos 48247 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48247
+# at 48290
+#010909 #:#:# server id 1 end_log_pos 48290 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48322 Delete_rows: table id 75 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48322
+#010909 #:#:# server id 1 end_log_pos 48391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48391
+#010909 #:#:# server id 1 end_log_pos 48467 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 48467
+#010909 #:#:# server id 1 end_log_pos 48566 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c63 VARBINARY(255))
+/*!*/;
+# at 48566
+#010909 #:#:# server id 1 end_log_pos 48634 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48634
+# at 48677
+#010909 #:#:# server id 1 end_log_pos 48677 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48709 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48709
+#010909 #:#:# server id 1 end_log_pos 48778 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48778
+#010909 #:#:# server id 1 end_log_pos 48846 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48846
+# at 48889
+#010909 #:#:# server id 1 end_log_pos 48889 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48921 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48921
+#010909 #:#:# server id 1 end_log_pos 48990 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48990
+#010909 #:#:# server id 1 end_log_pos 49058 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49058
+# at 49101
+#010909 #:#:# server id 1 end_log_pos 49101 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49372 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49372
+#010909 #:#:# server id 1 end_log_pos 49441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49441
+#010909 #:#:# server id 1 end_log_pos 49509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49509
+# at 49552
+#010909 #:#:# server id 1 end_log_pos 49552 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49584 Delete_rows: table id 76 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49584
+#010909 #:#:# server id 1 end_log_pos 49653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49653
+#010909 #:#:# server id 1 end_log_pos 49729 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 49729
+#010909 #:#:# server id 1 end_log_pos 49773 Rotate to master-bin.000002 pos: 4
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+# at 4
+#091206 #:#:# server id 1 end_log_pos 107 Start: binlog v 4, server v 5.5.1-beta-debug-log created 091206 #:#:# at startup
+ROLLBACK/*!*/;
+# at 107
+#010909 #:#:# server id 1 end_log_pos 193 Query thread_id=2 exec_time=# error_code=0
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=2/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+# at 193
+#010909 #:#:# server id 1 end_log_pos 281 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT)
+/*!*/;
+# at 281
+#010909 #:#:# server id 1 end_log_pos 349 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 349
+# at 392
+#010909 #:#:# server id 1 end_log_pos 392 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 423 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 423
+#010909 #:#:# server id 1 end_log_pos 492 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 492
+#010909 #:#:# server id 1 end_log_pos 560 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 560
+# at 603
+#010909 #:#:# server id 1 end_log_pos 603 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 634 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 634
+#010909 #:#:# server id 1 end_log_pos 703 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 703
+#010909 #:#:# server id 1 end_log_pos 779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 779
+#010909 #:#:# server id 1 end_log_pos 870 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT(7))
+/*!*/;
+# at 870
+#010909 #:#:# server id 1 end_log_pos 938 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 938
+# at 981
+#010909 #:#:# server id 1 end_log_pos 981 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1012 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000001' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1012
+#010909 #:#:# server id 1 end_log_pos 1081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1081
+#010909 #:#:# server id 1 end_log_pos 1149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1149
+# at 1192
+#010909 #:#:# server id 1 end_log_pos 1192 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1223 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000010' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1223
+#010909 #:#:# server id 1 end_log_pos 1292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1292
+#010909 #:#:# server id 1 end_log_pos 1360 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1360
+# at 1403
+#010909 #:#:# server id 1 end_log_pos 1403 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1434 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000100' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1434
+#010909 #:#:# server id 1 end_log_pos 1503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1503
+#010909 #:#:# server id 1 end_log_pos 1571 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1571
+# at 1614
+#010909 #:#:# server id 1 end_log_pos 1614 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1645 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0001000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1645
+#010909 #:#:# server id 1 end_log_pos 1714 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1714
+#010909 #:#:# server id 1 end_log_pos 1782 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1782
+# at 1825
+#010909 #:#:# server id 1 end_log_pos 1825 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1856 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1856
+#010909 #:#:# server id 1 end_log_pos 1925 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1925
+#010909 #:#:# server id 1 end_log_pos 1993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1993
+# at 2036
+#010909 #:#:# server id 1 end_log_pos 2036 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2067 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0100000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2067
+#010909 #:#:# server id 1 end_log_pos 2136 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2136
+#010909 #:#:# server id 1 end_log_pos 2204 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2204
+# at 2247
+#010909 #:#:# server id 1 end_log_pos 2247 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2278 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1000000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2278
+#010909 #:#:# server id 1 end_log_pos 2347 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2347
+#010909 #:#:# server id 1 end_log_pos 2415 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2415
+# at 2458
+#010909 #:#:# server id 1 end_log_pos 2458 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2489 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2489
+#010909 #:#:# server id 1 end_log_pos 2558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2558
+#010909 #:#:# server id 1 end_log_pos 2626 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2626
+# at 2669
+#010909 #:#:# server id 1 end_log_pos 2669 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2700 Delete_rows: table id 24 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2700
+#010909 #:#:# server id 1 end_log_pos 2769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2769
+#010909 #:#:# server id 1 end_log_pos 2837 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2837
+# at 2880
+#010909 #:#:# server id 1 end_log_pos 2880 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2914 Update_rows: table id 24 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+### SET
+### @1=b'0001111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2914
+#010909 #:#:# server id 1 end_log_pos 2983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2983
+#010909 #:#:# server id 1 end_log_pos 3059 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3059
+#010909 #:#:# server id 1 end_log_pos 3160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (a BIT(20), b CHAR(2))
+/*!*/;
+# at 3160
+#010909 #:#:# server id 1 end_log_pos 3228 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3228
+# at 3274
+#010909 #:#:# server id 1 end_log_pos 3274 Table_map: `test`.`t1` mapped to number 25
+#010909 #:#:# server id 1 end_log_pos 3310 Write_rows: table id 25 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00010010010010001001' /* BIT(20) meta=516 nullable=1 is_null=0 */
+### @2='ab' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 3310
+#010909 #:#:# server id 1 end_log_pos 3379 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3379
+#010909 #:#:# server id 1 end_log_pos 3455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3455
+#010909 #:#:# server id 1 end_log_pos 3547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c02 BIT(64))
+/*!*/;
+# at 3547
+#010909 #:#:# server id 1 end_log_pos 3615 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3615
+# at 3658
+#010909 #:#:# server id 1 end_log_pos 3658 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3696 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000001' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3696
+#010909 #:#:# server id 1 end_log_pos 3765 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3765
+#010909 #:#:# server id 1 end_log_pos 3833 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3833
+# at 3876
+#010909 #:#:# server id 1 end_log_pos 3876 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3914 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000010' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3914
+#010909 #:#:# server id 1 end_log_pos 3983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3983
+#010909 #:#:# server id 1 end_log_pos 4051 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4051
+# at 4094
+#010909 #:#:# server id 1 end_log_pos 4094 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4132 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000010000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4132
+#010909 #:#:# server id 1 end_log_pos 4201 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4201
+#010909 #:#:# server id 1 end_log_pos 4269 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4269
+# at 4312
+#010909 #:#:# server id 1 end_log_pos 4312 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4350 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4350
+#010909 #:#:# server id 1 end_log_pos 4419 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4419
+#010909 #:#:# server id 1 end_log_pos 4495 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 4495
+#010909 #:#:# server id 1 end_log_pos 4587 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c03 TINYINT)
+/*!*/;
+# at 4587
+#010909 #:#:# server id 1 end_log_pos 4655 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4655
+# at 4696
+#010909 #:#:# server id 1 end_log_pos 4696 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4731 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=3 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4731
+#010909 #:#:# server id 1 end_log_pos 4800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4800
+#010909 #:#:# server id 1 end_log_pos 4868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4868
+# at 4909
+#010909 #:#:# server id 1 end_log_pos 4909 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4940 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4940
+#010909 #:#:# server id 1 end_log_pos 5009 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5009
+#010909 #:#:# server id 1 end_log_pos 5077 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5077
+# at 5118
+#010909 #:#:# server id 1 end_log_pos 5118 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5152 Update_rows: table id 27 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5152
+#010909 #:#:# server id 1 end_log_pos 5221 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5221
+#010909 #:#:# server id 1 end_log_pos 5289 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5289
+# at 5330
+#010909 #:#:# server id 1 end_log_pos 5330 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5361 Delete_rows: table id 27 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5361
+#010909 #:#:# server id 1 end_log_pos 5430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5430
+#010909 #:#:# server id 1 end_log_pos 5506 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 5506
+#010909 #:#:# server id 1 end_log_pos 5607 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c04 TINYINT UNSIGNED)
+/*!*/;
+# at 5607
+#010909 #:#:# server id 1 end_log_pos 5675 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5675
+# at 5716
+#010909 #:#:# server id 1 end_log_pos 5716 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5749 Write_rows: table id 28 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5749
+#010909 #:#:# server id 1 end_log_pos 5818 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5818
+#010909 #:#:# server id 1 end_log_pos 5886 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5886
+# at 5927
+#010909 #:#:# server id 1 end_log_pos 5927 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5958 Delete_rows: table id 28 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5958
+#010909 #:#:# server id 1 end_log_pos 6027 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6027
+#010909 #:#:# server id 1 end_log_pos 6103 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6103
+#010909 #:#:# server id 1 end_log_pos 6192 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c06 BOOL)
+/*!*/;
+# at 6192
+#010909 #:#:# server id 1 end_log_pos 6260 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6260
+# at 6301
+#010909 #:#:# server id 1 end_log_pos 6301 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6332 Write_rows: table id 29 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6332
+#010909 #:#:# server id 1 end_log_pos 6401 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6401
+#010909 #:#:# server id 1 end_log_pos 6469 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6469
+# at 6510
+#010909 #:#:# server id 1 end_log_pos 6510 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6541 Delete_rows: table id 29 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6541
+#010909 #:#:# server id 1 end_log_pos 6610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6610
+#010909 #:#:# server id 1 end_log_pos 6686 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6686
+#010909 #:#:# server id 1 end_log_pos 6779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c07 SMALLINT)
+/*!*/;
+# at 6779
+#010909 #:#:# server id 1 end_log_pos 6847 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6847
+# at 6888
+#010909 #:#:# server id 1 end_log_pos 6888 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 6920 Write_rows: table id 30 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 6920
+#010909 #:#:# server id 1 end_log_pos 6989 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6989
+#010909 #:#:# server id 1 end_log_pos 7057 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7057
+# at 7098
+#010909 #:#:# server id 1 end_log_pos 7098 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 7130 Delete_rows: table id 30 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7130
+#010909 #:#:# server id 1 end_log_pos 7199 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7199
+#010909 #:#:# server id 1 end_log_pos 7275 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 7275
+#010909 #:#:# server id 1 end_log_pos 7377 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c08 SMALLINT UNSIGNED)
+/*!*/;
+# at 7377
+#010909 #:#:# server id 1 end_log_pos 7445 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7445
+# at 7486
+#010909 #:#:# server id 1 end_log_pos 7486 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7521 Write_rows: table id 31 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7521
+#010909 #:#:# server id 1 end_log_pos 7590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7590
+#010909 #:#:# server id 1 end_log_pos 7658 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7658
+# at 7699
+#010909 #:#:# server id 1 end_log_pos 7699 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7735 Update_rows: table id 31 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7735
+#010909 #:#:# server id 1 end_log_pos 7804 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7804
+#010909 #:#:# server id 1 end_log_pos 7872 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7872
+# at 7913
+#010909 #:#:# server id 1 end_log_pos 7913 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7945 Delete_rows: table id 31 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7945
+#010909 #:#:# server id 1 end_log_pos 8014 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8014
+#010909 #:#:# server id 1 end_log_pos 8090 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8090
+#010909 #:#:# server id 1 end_log_pos 8184 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c10 MEDIUMINT)
+/*!*/;
+# at 8184
+#010909 #:#:# server id 1 end_log_pos 8252 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8252
+# at 8293
+#010909 #:#:# server id 1 end_log_pos 8293 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8326 Write_rows: table id 32 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8326
+#010909 #:#:# server id 1 end_log_pos 8395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8395
+#010909 #:#:# server id 1 end_log_pos 8463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8463
+# at 8504
+#010909 #:#:# server id 1 end_log_pos 8504 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8537 Delete_rows: table id 32 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8537
+#010909 #:#:# server id 1 end_log_pos 8606 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8606
+#010909 #:#:# server id 1 end_log_pos 8682 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8682
+#010909 #:#:# server id 1 end_log_pos 8785 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c11 MEDIUMINT UNSIGNED)
+/*!*/;
+# at 8785
+#010909 #:#:# server id 1 end_log_pos 8853 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8853
+# at 8894
+#010909 #:#:# server id 1 end_log_pos 8894 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 8931 Write_rows: table id 33 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8931
+#010909 #:#:# server id 1 end_log_pos 9000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9000
+#010909 #:#:# server id 1 end_log_pos 9068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9068
+# at 9109
+#010909 #:#:# server id 1 end_log_pos 9109 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9147 Update_rows: table id 33 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9147
+#010909 #:#:# server id 1 end_log_pos 9216 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9216
+#010909 #:#:# server id 1 end_log_pos 9284 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9284
+# at 9325
+#010909 #:#:# server id 1 end_log_pos 9325 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9358 Delete_rows: table id 33 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9358
+#010909 #:#:# server id 1 end_log_pos 9427 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9427
+#010909 #:#:# server id 1 end_log_pos 9503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 9503
+#010909 #:#:# server id 1 end_log_pos 9591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c13 INT)
+/*!*/;
+# at 9591
+#010909 #:#:# server id 1 end_log_pos 9659 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9659
+# at 9700
+#010909 #:#:# server id 1 end_log_pos 9700 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9734 Write_rows: table id 34 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9734
+#010909 #:#:# server id 1 end_log_pos 9803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9803
+#010909 #:#:# server id 1 end_log_pos 9871 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9871
+# at 9912
+#010909 #:#:# server id 1 end_log_pos 9912 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9946 Delete_rows: table id 34 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9946
+#010909 #:#:# server id 1 end_log_pos 10015 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10015
+#010909 #:#:# server id 1 end_log_pos 10091 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10091
+#010909 #:#:# server id 1 end_log_pos 10188 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c14 INT UNSIGNED)
+/*!*/;
+# at 10188
+#010909 #:#:# server id 1 end_log_pos 10256 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10256
+# at 10297
+#010909 #:#:# server id 1 end_log_pos 10297 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10336 Write_rows: table id 35 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10336
+#010909 #:#:# server id 1 end_log_pos 10405 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10405
+#010909 #:#:# server id 1 end_log_pos 10473 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10473
+# at 10514
+#010909 #:#:# server id 1 end_log_pos 10514 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10554 Update_rows: table id 35 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* INT meta=0 nullable=1 is_null=0 */
+# at 10554
+#010909 #:#:# server id 1 end_log_pos 10623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10623
+#010909 #:#:# server id 1 end_log_pos 10691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10691
+# at 10732
+#010909 #:#:# server id 1 end_log_pos 10732 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10766 Delete_rows: table id 35 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10766
+#010909 #:#:# server id 1 end_log_pos 10835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10835
+#010909 #:#:# server id 1 end_log_pos 10911 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10911
+#010909 #:#:# server id 1 end_log_pos 11002 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c16 BIGINT)
+/*!*/;
+# at 11002
+#010909 #:#:# server id 1 end_log_pos 11070 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11070
+# at 11111
+#010909 #:#:# server id 1 end_log_pos 11111 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11149 Write_rows: table id 36 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11149
+#010909 #:#:# server id 1 end_log_pos 11218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11218
+#010909 #:#:# server id 1 end_log_pos 11286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11286
+# at 11327
+#010909 #:#:# server id 1 end_log_pos 11327 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11365 Delete_rows: table id 36 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11365
+#010909 #:#:# server id 1 end_log_pos 11434 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11434
+#010909 #:#:# server id 1 end_log_pos 11510 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 11510
+#010909 #:#:# server id 1 end_log_pos 11610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c17 BIGINT UNSIGNED)
+/*!*/;
+# at 11610
+#010909 #:#:# server id 1 end_log_pos 11678 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11678
+# at 11719
+#010909 #:#:# server id 1 end_log_pos 11719 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11766 Write_rows: table id 37 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11766
+#010909 #:#:# server id 1 end_log_pos 11835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11835
+#010909 #:#:# server id 1 end_log_pos 11903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11903
+# at 11944
+#010909 #:#:# server id 1 end_log_pos 11944 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11992 Update_rows: table id 37 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11992
+#010909 #:#:# server id 1 end_log_pos 12061 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12061
+#010909 #:#:# server id 1 end_log_pos 12129 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12129
+# at 12170
+#010909 #:#:# server id 1 end_log_pos 12170 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 12208 Delete_rows: table id 37 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 12208
+#010909 #:#:# server id 1 end_log_pos 12277 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12277
+#010909 #:#:# server id 1 end_log_pos 12353 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12353
+#010909 #:#:# server id 1 end_log_pos 12443 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c19 FLOAT)
+/*!*/;
+# at 12443
+#010909 #:#:# server id 1 end_log_pos 12511 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12511
+# at 12553
+#010909 #:#:# server id 1 end_log_pos 12553 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12587 Write_rows: table id 38 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12587
+#010909 #:#:# server id 1 end_log_pos 12656 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12656
+#010909 #:#:# server id 1 end_log_pos 12724 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12724
+# at 12766
+#010909 #:#:# server id 1 end_log_pos 12766 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12800 Delete_rows: table id 38 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12800
+#010909 #:#:# server id 1 end_log_pos 12869 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12869
+#010909 #:#:# server id 1 end_log_pos 12945 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12945
+#010909 #:#:# server id 1 end_log_pos 13036 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c22 DOUBLE)
+/*!*/;
+# at 13036
+#010909 #:#:# server id 1 end_log_pos 13104 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13104
+# at 13146
+#010909 #:#:# server id 1 end_log_pos 13146 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13184 Write_rows: table id 39 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13184
+#010909 #:#:# server id 1 end_log_pos 13253 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13253
+#010909 #:#:# server id 1 end_log_pos 13321 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13321
+# at 13363
+#010909 #:#:# server id 1 end_log_pos 13363 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13401 Delete_rows: table id 39 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13401
+#010909 #:#:# server id 1 end_log_pos 13470 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13470
+#010909 #:#:# server id 1 end_log_pos 13546 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 13546
+#010909 #:#:# server id 1 end_log_pos 13644 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c25 DECIMAL(10,5))
+/*!*/;
+# at 13644
+#010909 #:#:# server id 1 end_log_pos 13712 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13712
+# at 13755
+#010909 #:#:# server id 1 end_log_pos 13755 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 13791 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 13791
+#010909 #:#:# server id 1 end_log_pos 13860 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13860
+#010909 #:#:# server id 1 end_log_pos 13928 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13928
+# at 13971
+#010909 #:#:# server id 1 end_log_pos 13971 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14007 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-000000543.210000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14007
+#010909 #:#:# server id 1 end_log_pos 14076 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14076
+#010909 #:#:# server id 1 end_log_pos 14144 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14144
+# at 14187
+#010909 #:#:# server id 1 end_log_pos 14187 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14223 Delete_rows: table id 40 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14223
+#010909 #:#:# server id 1 end_log_pos 14292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14292
+#010909 #:#:# server id 1 end_log_pos 14368 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14368
+#010909 #:#:# server id 1 end_log_pos 14457 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c28 DATE)
+/*!*/;
+# at 14457
+#010909 #:#:# server id 1 end_log_pos 14525 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14525
+# at 14566
+#010909 #:#:# server id 1 end_log_pos 14566 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14599 Write_rows: table id 41 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14599
+#010909 #:#:# server id 1 end_log_pos 14668 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14668
+#010909 #:#:# server id 1 end_log_pos 14736 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14736
+# at 14777
+#010909 #:#:# server id 1 end_log_pos 14777 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14810 Delete_rows: table id 41 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14810
+#010909 #:#:# server id 1 end_log_pos 14879 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14879
+#010909 #:#:# server id 1 end_log_pos 14955 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14955
+#010909 #:#:# server id 1 end_log_pos 15048 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c29 DATETIME)
+/*!*/;
+# at 15048
+#010909 #:#:# server id 1 end_log_pos 15116 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15116
+# at 15157
+#010909 #:#:# server id 1 end_log_pos 15157 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15195 Write_rows: table id 42 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15195
+#010909 #:#:# server id 1 end_log_pos 15264 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15264
+#010909 #:#:# server id 1 end_log_pos 15332 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15332
+# at 15373
+#010909 #:#:# server id 1 end_log_pos 15373 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15411 Delete_rows: table id 42 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15411
+#010909 #:#:# server id 1 end_log_pos 15480 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15480
+#010909 #:#:# server id 1 end_log_pos 15556 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 15556
+#010909 #:#:# server id 1 end_log_pos 15650 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c30 TIMESTAMP)
+/*!*/;
+# at 15650
+#010909 #:#:# server id 1 end_log_pos 15726 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.time_zone='SYSTEM'/*!*/;
+BEGIN
+/*!*/;
+# at 15726
+# at 15767
+#010909 #:#:# server id 1 end_log_pos 15767 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 15801 Write_rows: table id 43 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 15801
+#010909 #:#:# server id 1 end_log_pos 15878 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15878
+#010909 #:#:# server id 1 end_log_pos 15954 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15954
+# at 15995
+#010909 #:#:# server id 1 end_log_pos 15995 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 16029 Delete_rows: table id 43 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 16029
+#010909 #:#:# server id 1 end_log_pos 16106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16106
+#010909 #:#:# server id 1 end_log_pos 16182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16182
+#010909 #:#:# server id 1 end_log_pos 16271 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c31 TIME)
+/*!*/;
+# at 16271
+#010909 #:#:# server id 1 end_log_pos 16339 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16339
+# at 16380
+#010909 #:#:# server id 1 end_log_pos 16380 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16413 Write_rows: table id 44 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16413
+#010909 #:#:# server id 1 end_log_pos 16482 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16482
+#010909 #:#:# server id 1 end_log_pos 16550 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16550
+# at 16591
+#010909 #:#:# server id 1 end_log_pos 16591 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16624 Delete_rows: table id 44 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16624
+#010909 #:#:# server id 1 end_log_pos 16693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16693
+#010909 #:#:# server id 1 end_log_pos 16769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16769
+#010909 #:#:# server id 1 end_log_pos 16858 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c32 YEAR)
+/*!*/;
+# at 16858
+#010909 #:#:# server id 1 end_log_pos 16926 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16926
+# at 16967
+#010909 #:#:# server id 1 end_log_pos 16967 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 16998 Write_rows: table id 45 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 16998
+#010909 #:#:# server id 1 end_log_pos 17067 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17067
+#010909 #:#:# server id 1 end_log_pos 17135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17135
+# at 17176
+#010909 #:#:# server id 1 end_log_pos 17176 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 17207 Delete_rows: table id 45 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 17207
+#010909 #:#:# server id 1 end_log_pos 17276 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17276
+#010909 #:#:# server id 1 end_log_pos 17352 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17352
+#010909 #:#:# server id 1 end_log_pos 17441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c33 CHAR)
+/*!*/;
+# at 17441
+#010909 #:#:# server id 1 end_log_pos 17509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17509
+# at 17552
+#010909 #:#:# server id 1 end_log_pos 17552 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17584 Write_rows: table id 46 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17584
+#010909 #:#:# server id 1 end_log_pos 17653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17653
+#010909 #:#:# server id 1 end_log_pos 17721 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17721
+# at 17764
+#010909 #:#:# server id 1 end_log_pos 17764 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17796 Delete_rows: table id 46 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17796
+#010909 #:#:# server id 1 end_log_pos 17865 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17865
+#010909 #:#:# server id 1 end_log_pos 17941 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17941
+#010909 #:#:# server id 1 end_log_pos 18033 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c34 CHAR(0))
+/*!*/;
+# at 18033
+#010909 #:#:# server id 1 end_log_pos 18101 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18101
+# at 18144
+#010909 #:#:# server id 1 end_log_pos 18144 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18175 Write_rows: table id 47 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18175
+#010909 #:#:# server id 1 end_log_pos 18244 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18244
+#010909 #:#:# server id 1 end_log_pos 18312 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18312
+# at 18355
+#010909 #:#:# server id 1 end_log_pos 18355 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18386 Delete_rows: table id 47 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18386
+#010909 #:#:# server id 1 end_log_pos 18455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18455
+#010909 #:#:# server id 1 end_log_pos 18531 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 18531
+#010909 #:#:# server id 1 end_log_pos 18623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c35 CHAR(1))
+/*!*/;
+# at 18623
+#010909 #:#:# server id 1 end_log_pos 18691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18691
+# at 18734
+#010909 #:#:# server id 1 end_log_pos 18734 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18766 Write_rows: table id 48 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18766
+#010909 #:#:# server id 1 end_log_pos 18835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18835
+#010909 #:#:# server id 1 end_log_pos 18903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18903
+# at 18946
+#010909 #:#:# server id 1 end_log_pos 18946 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18978 Delete_rows: table id 48 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18978
+#010909 #:#:# server id 1 end_log_pos 19047 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19047
+#010909 #:#:# server id 1 end_log_pos 19123 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 19123
+#010909 #:#:# server id 1 end_log_pos 19217 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c36 CHAR(255))
+/*!*/;
+# at 19217
+#010909 #:#:# server id 1 end_log_pos 19285 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19285
+# at 19328
+#010909 #:#:# server id 1 end_log_pos 19328 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 19614 Write_rows: table id 49 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 19614
+#010909 #:#:# server id 1 end_log_pos 19683 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19683
+#010909 #:#:# server id 1 end_log_pos 19751 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19751
+# at 19794
+#010909 #:#:# server id 1 end_log_pos 19794 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 20080 Delete_rows: table id 49 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 20080
+#010909 #:#:# server id 1 end_log_pos 20149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20149
+#010909 #:#:# server id 1 end_log_pos 20225 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20225
+#010909 #:#:# server id 1 end_log_pos 20323 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c37 NATIONAL CHAR)
+/*!*/;
+# at 20323
+#010909 #:#:# server id 1 end_log_pos 20391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20391
+# at 20434
+#010909 #:#:# server id 1 end_log_pos 20434 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20466 Write_rows: table id 50 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20466
+#010909 #:#:# server id 1 end_log_pos 20535 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20535
+#010909 #:#:# server id 1 end_log_pos 20603 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20603
+# at 20646
+#010909 #:#:# server id 1 end_log_pos 20646 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20678 Delete_rows: table id 50 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20678
+#010909 #:#:# server id 1 end_log_pos 20747 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20747
+#010909 #:#:# server id 1 end_log_pos 20823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20823
+#010909 #:#:# server id 1 end_log_pos 20924 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c38 NATIONAL CHAR(0))
+/*!*/;
+# at 20924
+#010909 #:#:# server id 1 end_log_pos 20992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20992
+# at 21035
+#010909 #:#:# server id 1 end_log_pos 21035 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21066 Write_rows: table id 51 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21066
+#010909 #:#:# server id 1 end_log_pos 21135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21135
+#010909 #:#:# server id 1 end_log_pos 21203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21203
+# at 21246
+#010909 #:#:# server id 1 end_log_pos 21246 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21277 Delete_rows: table id 51 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21277
+#010909 #:#:# server id 1 end_log_pos 21346 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21346
+#010909 #:#:# server id 1 end_log_pos 21422 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 21422
+#010909 #:#:# server id 1 end_log_pos 21523 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c39 NATIONAL CHAR(1))
+/*!*/;
+# at 21523
+#010909 #:#:# server id 1 end_log_pos 21591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21591
+# at 21634
+#010909 #:#:# server id 1 end_log_pos 21634 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21666 Write_rows: table id 52 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21666
+#010909 #:#:# server id 1 end_log_pos 21735 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21735
+#010909 #:#:# server id 1 end_log_pos 21803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21803
+# at 21846
+#010909 #:#:# server id 1 end_log_pos 21846 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21878 Delete_rows: table id 52 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21878
+#010909 #:#:# server id 1 end_log_pos 21947 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21947
+#010909 #:#:# server id 1 end_log_pos 22023 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 22023
+#010909 #:#:# server id 1 end_log_pos 22126 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c40 NATIONAL CHAR(255))
+/*!*/;
+# at 22126
+#010909 #:#:# server id 1 end_log_pos 22194 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22194
+# at 22237
+#010909 #:#:# server id 1 end_log_pos 22237 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 22524 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 22524
+#010909 #:#:# server id 1 end_log_pos 22593 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 22593
+#010909 #:#:# server id 1 end_log_pos 22661 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22661
+# at 22704
+#010909 #:#:# server id 1 end_log_pos 22704 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 23246 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 23246
+#010909 #:#:# server id 1 end_log_pos 23315 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 23315
+#010909 #:#:# server id 1 end_log_pos 23383 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 23383
+# at 23426
+#010909 #:#:# server id 1 end_log_pos 23426 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 24226 Delete_rows: table id 53 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 24226
+#010909 #:#:# server id 1 end_log_pos 24295 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24295
+#010909 #:#:# server id 1 end_log_pos 24371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24371
+#010909 #:#:# server id 1 end_log_pos 24479 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c41 CHAR CHARACTER SET UCS2)
+/*!*/;
+# at 24479
+#010909 #:#:# server id 1 end_log_pos 24547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24547
+# at 24590
+#010909 #:#:# server id 1 end_log_pos 24590 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24623 Write_rows: table id 54 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24623
+#010909 #:#:# server id 1 end_log_pos 24692 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24692
+#010909 #:#:# server id 1 end_log_pos 24760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24760
+# at 24803
+#010909 #:#:# server id 1 end_log_pos 24803 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24836 Delete_rows: table id 54 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24836
+#010909 #:#:# server id 1 end_log_pos 24905 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24905
+#010909 #:#:# server id 1 end_log_pos 24981 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24981
+#010909 #:#:# server id 1 end_log_pos 25092 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c42 CHAR(0) CHARACTER SET UCS2)
+/*!*/;
+# at 25092
+#010909 #:#:# server id 1 end_log_pos 25160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25160
+# at 25203
+#010909 #:#:# server id 1 end_log_pos 25203 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25234 Write_rows: table id 55 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25234
+#010909 #:#:# server id 1 end_log_pos 25303 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25303
+#010909 #:#:# server id 1 end_log_pos 25371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25371
+# at 25414
+#010909 #:#:# server id 1 end_log_pos 25414 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25445 Delete_rows: table id 55 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25445
+#010909 #:#:# server id 1 end_log_pos 25514 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25514
+#010909 #:#:# server id 1 end_log_pos 25590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 25590
+#010909 #:#:# server id 1 end_log_pos 25701 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c43 CHAR(1) CHARACTER SET UCS2)
+/*!*/;
+# at 25701
+#010909 #:#:# server id 1 end_log_pos 25769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25769
+# at 25812
+#010909 #:#:# server id 1 end_log_pos 25812 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 25845 Write_rows: table id 56 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 25845
+#010909 #:#:# server id 1 end_log_pos 25914 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25914
+#010909 #:#:# server id 1 end_log_pos 25982 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25982
+# at 26025
+#010909 #:#:# server id 1 end_log_pos 26025 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 26058 Delete_rows: table id 56 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 26058
+#010909 #:#:# server id 1 end_log_pos 26127 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 26127
+#010909 #:#:# server id 1 end_log_pos 26203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 26203
+#010909 #:#:# server id 1 end_log_pos 26316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c44 CHAR(255) CHARACTER SET UCS2)
+/*!*/;
+# at 26316
+#010909 #:#:# server id 1 end_log_pos 26384 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 26384
+# at 26427
+#010909 #:#:# server id 1 end_log_pos 26427 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 26969 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 26969
+#010909 #:#:# server id 1 end_log_pos 27038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27038
+#010909 #:#:# server id 1 end_log_pos 27106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27106
+# at 27149
+#010909 #:#:# server id 1 end_log_pos 27149 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 27691 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00�x00�x00�x000�x00�x00�x00�x00�x00�x00� /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 27691
+#010909 #:#:# server id 1 end_log_pos 27760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27760
+#010909 #:#:# server id 1 end_log_pos 27828 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27828
+# at 27871
+# at 28413
+#010909 #:#:# server id 1 end_log_pos 27871 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 28413 Delete_rows: table id 57
+#010909 #:#:# server id 1 end_log_pos 28955 Delete_rows: table id 57 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='\x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x000) meta=61182 nullable=1 is_null=0 */
+# at 28955
+#010909 #:#:# server id 1 end_log_pos 29024 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29024
+#010909 #:#:# server id 1 end_log_pos 29100 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29100
+#010909 #:#:# server id 1 end_log_pos 29195 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c45 VARCHAR(0))
+/*!*/;
+# at 29195
+#010909 #:#:# server id 1 end_log_pos 29263 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29263
+# at 29306
+#010909 #:#:# server id 1 end_log_pos 29306 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29337 Write_rows: table id 58 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29337
+#010909 #:#:# server id 1 end_log_pos 29406 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29406
+#010909 #:#:# server id 1 end_log_pos 29474 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29474
+# at 29517
+#010909 #:#:# server id 1 end_log_pos 29517 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29548 Delete_rows: table id 58 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29548
+#010909 #:#:# server id 1 end_log_pos 29617 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29617
+#010909 #:#:# server id 1 end_log_pos 29693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29693
+#010909 #:#:# server id 1 end_log_pos 29788 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c46 VARCHAR(1))
+/*!*/;
+# at 29788
+#010909 #:#:# server id 1 end_log_pos 29856 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29856
+# at 29899
+#010909 #:#:# server id 1 end_log_pos 29899 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 29931 Write_rows: table id 59 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 29931
+#010909 #:#:# server id 1 end_log_pos 30000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30000
+#010909 #:#:# server id 1 end_log_pos 30068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30068
+# at 30111
+#010909 #:#:# server id 1 end_log_pos 30111 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 30143 Delete_rows: table id 59 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 30143
+#010909 #:#:# server id 1 end_log_pos 30212 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30212
+#010909 #:#:# server id 1 end_log_pos 30288 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 30288
+#010909 #:#:# server id 1 end_log_pos 30385 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c47 VARCHAR(255))
+/*!*/;
+# at 30385
+#010909 #:#:# server id 1 end_log_pos 30453 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30453
+# at 30496
+#010909 #:#:# server id 1 end_log_pos 30496 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 30782 Write_rows: table id 60 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 30782
+#010909 #:#:# server id 1 end_log_pos 30851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30851
+#010909 #:#:# server id 1 end_log_pos 30919 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30919
+# at 30962
+#010909 #:#:# server id 1 end_log_pos 30962 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 31248 Delete_rows: table id 60 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 31248
+#010909 #:#:# server id 1 end_log_pos 31317 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31317
+#010909 #:#:# server id 1 end_log_pos 31393 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 31393
+#010909 #:#:# server id 1 end_log_pos 31490 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c48 VARCHAR(261))
+/*!*/;
+# at 31490
+#010909 #:#:# server id 1 end_log_pos 31558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 31558
+# at 31601
+#010909 #:#:# server id 1 end_log_pos 31601 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 31894 Write_rows: table id 61 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 31894
+#010909 #:#:# server id 1 end_log_pos 31963 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31963
+#010909 #:#:# server id 1 end_log_pos 32031 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32031
+# at 32074
+#010909 #:#:# server id 1 end_log_pos 32074 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 32367 Delete_rows: table id 61 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 32367
+#010909 #:#:# server id 1 end_log_pos 32436 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32436
+#010909 #:#:# server id 1 end_log_pos 32512 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 32512
+#010909 #:#:# server id 1 end_log_pos 32616 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c49 NATIONAL VARCHAR(0))
+/*!*/;
+# at 32616
+#010909 #:#:# server id 1 end_log_pos 32684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32684
+# at 32727
+#010909 #:#:# server id 1 end_log_pos 32727 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32758 Write_rows: table id 62 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32758
+#010909 #:#:# server id 1 end_log_pos 32827 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32827
+#010909 #:#:# server id 1 end_log_pos 32895 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32895
+# at 32938
+#010909 #:#:# server id 1 end_log_pos 32938 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32969 Delete_rows: table id 62 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32969
+#010909 #:#:# server id 1 end_log_pos 33038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33038
+#010909 #:#:# server id 1 end_log_pos 33114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33114
+#010909 #:#:# server id 1 end_log_pos 33218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c50 NATIONAL VARCHAR(1))
+/*!*/;
+# at 33218
+#010909 #:#:# server id 1 end_log_pos 33286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33286
+# at 33329
+#010909 #:#:# server id 1 end_log_pos 33329 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33361 Write_rows: table id 63 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33361
+#010909 #:#:# server id 1 end_log_pos 33430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33430
+#010909 #:#:# server id 1 end_log_pos 33498 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33498
+# at 33541
+#010909 #:#:# server id 1 end_log_pos 33541 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33573 Delete_rows: table id 63 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33573
+#010909 #:#:# server id 1 end_log_pos 33642 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33642
+#010909 #:#:# server id 1 end_log_pos 33718 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33718
+#010909 #:#:# server id 1 end_log_pos 33824 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c51 NATIONAL VARCHAR(255))
+/*!*/;
+# at 33824
+#010909 #:#:# server id 1 end_log_pos 33892 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33892
+# at 33935
+#010909 #:#:# server id 1 end_log_pos 33935 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34222 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+# at 34222
+#010909 #:#:# server id 1 end_log_pos 34291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 34291
+#010909 #:#:# server id 1 end_log_pos 34359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 34359
+# at 34402
+#010909 #:#:# server id 1 end_log_pos 34402 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34944 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß0 */
+# at 34944
+#010909 #:#:# server id 1 end_log_pos 35013 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35013
+#010909 #:#:# server id 1 end_log_pos 35081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 35081
+# at 35124
+#010909 #:#:# server id 1 end_log_pos 35124 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 35924 Delete_rows: table id 64 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+# at 35924
+#010909 #:#:# server id 1 end_log_pos 35993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35993
+#010909 #:#:# server id 1 end_log_pos 36069 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 36069
+#010909 #:#:# server id 1 end_log_pos 36175 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c52 NATIONAL VARCHAR(261))
+/*!*/;
+# at 36175
+#010909 #:#:# server id 1 end_log_pos 36243 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36243
+# at 36286
+#010909 #:#:# server id 1 end_log_pos 36286 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 36579 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+# at 36579
+#010909 #:#:# server id 1 end_log_pos 36648 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 36648
+#010909 #:#:# server id 1 end_log_pos 36716 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36716
+# at 36759
+#010909 #:#:# server id 1 end_log_pos 36759 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 37313 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+# at 37313
+#010909 #:#:# server id 1 end_log_pos 37382 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 37382
+#010909 #:#:# server id 1 end_log_pos 37450 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 37450
+# at 37493
+#010909 #:#:# server id 1 end_log_pos 37493 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 38311 Delete_rows: table id 65 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß*/
+# at 38311
+#010909 #:#:# server id 1 end_log_pos 38380 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38380
+#010909 #:#:# server id 1 end_log_pos 38456 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 38456
+#010909 #:#:# server id 1 end_log_pos 38570 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c53 VARCHAR(0) CHARACTER SET ucs2)
+/*!*/;
+# at 38570
+#010909 #:#:# server id 1 end_log_pos 38638 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38638
+# at 38681
+#010909 #:#:# server id 1 end_log_pos 38681 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38712 Write_rows: table id 66 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38712
+#010909 #:#:# server id 1 end_log_pos 38781 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38781
+#010909 #:#:# server id 1 end_log_pos 38849 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38849
+# at 38892
+#010909 #:#:# server id 1 end_log_pos 38892 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38923 Delete_rows: table id 66 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38923
+#010909 #:#:# server id 1 end_log_pos 38992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38992
+#010909 #:#:# server id 1 end_log_pos 39068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39068
+#010909 #:#:# server id 1 end_log_pos 39182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c54 VARCHAR(1) CHARACTER SET ucs2)
+/*!*/;
+# at 39182
+#010909 #:#:# server id 1 end_log_pos 39250 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39250
+# at 39293
+#010909 #:#:# server id 1 end_log_pos 39293 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39326 Write_rows: table id 67 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39326
+#010909 #:#:# server id 1 end_log_pos 39395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39395
+#010909 #:#:# server id 1 end_log_pos 39463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39463
+# at 39506
+#010909 #:#:# server id 1 end_log_pos 39506 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39539 Delete_rows: table id 67 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39539
+#010909 #:#:# server id 1 end_log_pos 39608 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39608
+#010909 #:#:# server id 1 end_log_pos 39684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39684
+#010909 #:#:# server id 1 end_log_pos 39800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c55 VARCHAR(255) CHARACTER SET ucs2)
+/*!*/;
+# at 39800
+#010909 #:#:# server id 1 end_log_pos 39868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39868
+# at 39911
+#010909 #:#:# server id 1 end_log_pos 39911 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 40451 Write_rows: table id 68 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 40451
+#010909 #:#:# server id 1 end_log_pos 40520 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 40520
+#010909 #:#:# server id 1 end_log_pos 40588 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 40588
+# at 40631
+#010909 #:#:# server id 1 end_log_pos 40631 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 41171 Delete_rows: table id 68 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 41171
+#010909 #:#:# server id 1 end_log_pos 41240 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 41240
+#010909 #:#:# server id 1 end_log_pos 41316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 41316
+#010909 #:#:# server id 1 end_log_pos 41432 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c56 VARCHAR(261) CHARACTER SET ucs2)
+/*!*/;
+# at 41432
+#010909 #:#:# server id 1 end_log_pos 41500 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 41500
+# at 41543
+#010909 #:#:# server id 1 end_log_pos 41543 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42095 Write_rows: table id 69 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42095
+#010909 #:#:# server id 1 end_log_pos 42164 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42164
+#010909 #:#:# server id 1 end_log_pos 42232 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 42232
+# at 42275
+#010909 #:#:# server id 1 end_log_pos 42275 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42827 Delete_rows: table id 69 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42827
+#010909 #:#:# server id 1 end_log_pos 42896 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42896
+#010909 #:#:# server id 1 end_log_pos 42972 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 42972
+#010909 #:#:# server id 1 end_log_pos 43063 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c57 BINARY)
+/*!*/;
+# at 43063
+#010909 #:#:# server id 1 end_log_pos 43131 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43131
+# at 43174
+#010909 #:#:# server id 1 end_log_pos 43174 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43205 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43205
+#010909 #:#:# server id 1 end_log_pos 43274 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43274
+#010909 #:#:# server id 1 end_log_pos 43342 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43342
+# at 43385
+#010909 #:#:# server id 1 end_log_pos 43385 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43417 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43417
+#010909 #:#:# server id 1 end_log_pos 43486 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43486
+#010909 #:#:# server id 1 end_log_pos 43554 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43554
+# at 43597
+#010909 #:#:# server id 1 end_log_pos 43597 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43629 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43629
+#010909 #:#:# server id 1 end_log_pos 43698 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43698
+#010909 #:#:# server id 1 end_log_pos 43766 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43766
+# at 43809
+#010909 #:#:# server id 1 end_log_pos 43809 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43841 Delete_rows: table id 70 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43841
+#010909 #:#:# server id 1 end_log_pos 43910 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43910
+#010909 #:#:# server id 1 end_log_pos 43986 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 43986
+#010909 #:#:# server id 1 end_log_pos 44080 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c58 BINARY(0))
+/*!*/;
+# at 44080
+#010909 #:#:# server id 1 end_log_pos 44148 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44148
+# at 44191
+#010909 #:#:# server id 1 end_log_pos 44191 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44222 Write_rows: table id 71 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44222
+#010909 #:#:# server id 1 end_log_pos 44291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44291
+#010909 #:#:# server id 1 end_log_pos 44359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44359
+# at 44402
+#010909 #:#:# server id 1 end_log_pos 44402 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44433 Delete_rows: table id 71 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44433
+#010909 #:#:# server id 1 end_log_pos 44502 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44502
+#010909 #:#:# server id 1 end_log_pos 44578 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 44578
+#010909 #:#:# server id 1 end_log_pos 44672 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c59 BINARY(1))
+/*!*/;
+# at 44672
+#010909 #:#:# server id 1 end_log_pos 44740 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44740
+# at 44783
+#010909 #:#:# server id 1 end_log_pos 44783 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 44814 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 44814
+#010909 #:#:# server id 1 end_log_pos 44883 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44883
+#010909 #:#:# server id 1 end_log_pos 44951 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44951
+# at 44994
+#010909 #:#:# server id 1 end_log_pos 44994 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45026 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45026
+#010909 #:#:# server id 1 end_log_pos 45095 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45095
+#010909 #:#:# server id 1 end_log_pos 45163 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45163
+# at 45206
+#010909 #:#:# server id 1 end_log_pos 45206 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45238 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45238
+#010909 #:#:# server id 1 end_log_pos 45307 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45307
+#010909 #:#:# server id 1 end_log_pos 45375 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45375
+# at 45418
+#010909 #:#:# server id 1 end_log_pos 45418 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45450 Delete_rows: table id 72 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45450
+#010909 #:#:# server id 1 end_log_pos 45519 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45519
+#010909 #:#:# server id 1 end_log_pos 45595 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 45595
+#010909 #:#:# server id 1 end_log_pos 45691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c60 BINARY(255))
+/*!*/;
+# at 45691
+#010909 #:#:# server id 1 end_log_pos 45759 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45759
+# at 45802
+#010909 #:#:# server id 1 end_log_pos 45802 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 45833 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 45833
+#010909 #:#:# server id 1 end_log_pos 45902 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45902
+#010909 #:#:# server id 1 end_log_pos 45970 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45970
+# at 46013
+#010909 #:#:# server id 1 end_log_pos 46013 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46045 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46045
+#010909 #:#:# server id 1 end_log_pos 46114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46114
+#010909 #:#:# server id 1 end_log_pos 46182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46182
+# at 46225
+#010909 #:#:# server id 1 end_log_pos 46225 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46495 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46495
+#010909 #:#:# server id 1 end_log_pos 46564 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46564
+#010909 #:#:# server id 1 end_log_pos 46632 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46632
+# at 46675
+#010909 #:#:# server id 1 end_log_pos 46675 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46706 Delete_rows: table id 73 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46706
+#010909 #:#:# server id 1 end_log_pos 46775 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46775
+#010909 #:#:# server id 1 end_log_pos 46851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 46851
+#010909 #:#:# server id 1 end_log_pos 46948 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c61 VARBINARY(0))
+/*!*/;
+# at 46948
+#010909 #:#:# server id 1 end_log_pos 47016 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47016
+# at 47059
+#010909 #:#:# server id 1 end_log_pos 47059 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47090 Write_rows: table id 74 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47090
+#010909 #:#:# server id 1 end_log_pos 47159 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47159
+#010909 #:#:# server id 1 end_log_pos 47227 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47227
+# at 47270
+#010909 #:#:# server id 1 end_log_pos 47270 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47301 Delete_rows: table id 74 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47301
+#010909 #:#:# server id 1 end_log_pos 47370 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47370
+#010909 #:#:# server id 1 end_log_pos 47446 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 47446
+#010909 #:#:# server id 1 end_log_pos 47543 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c62 VARBINARY(1))
+/*!*/;
+# at 47543
+#010909 #:#:# server id 1 end_log_pos 47611 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47611
+# at 47654
+#010909 #:#:# server id 1 end_log_pos 47654 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47686 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47686
+#010909 #:#:# server id 1 end_log_pos 47755 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47755
+#010909 #:#:# server id 1 end_log_pos 47823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47823
+# at 47866
+#010909 #:#:# server id 1 end_log_pos 47866 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47898 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47898
+#010909 #:#:# server id 1 end_log_pos 47967 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47967
+#010909 #:#:# server id 1 end_log_pos 48035 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48035
+# at 48078
+#010909 #:#:# server id 1 end_log_pos 48078 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48110 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48110
+#010909 #:#:# server id 1 end_log_pos 48179 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48179
+#010909 #:#:# server id 1 end_log_pos 48247 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48247
+# at 48290
+#010909 #:#:# server id 1 end_log_pos 48290 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48322 Delete_rows: table id 75 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48322
+#010909 #:#:# server id 1 end_log_pos 48391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48391
+#010909 #:#:# server id 1 end_log_pos 48467 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 48467
+#010909 #:#:# server id 1 end_log_pos 48566 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c63 VARBINARY(255))
+/*!*/;
+# at 48566
+#010909 #:#:# server id 1 end_log_pos 48634 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48634
+# at 48677
+#010909 #:#:# server id 1 end_log_pos 48677 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48709 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48709
+#010909 #:#:# server id 1 end_log_pos 48778 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48778
+#010909 #:#:# server id 1 end_log_pos 48846 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48846
+# at 48889
+#010909 #:#:# server id 1 end_log_pos 48889 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48921 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48921
+#010909 #:#:# server id 1 end_log_pos 48990 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48990
+#010909 #:#:# server id 1 end_log_pos 49058 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49058
+# at 49101
+#010909 #:#:# server id 1 end_log_pos 49101 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49372 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49372
+#010909 #:#:# server id 1 end_log_pos 49441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49441
+#010909 #:#:# server id 1 end_log_pos 49509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49509
+# at 49552
+#010909 #:#:# server id 1 end_log_pos 49552 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49584 Delete_rows: table id 76 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49584
+#010909 #:#:# server id 1 end_log_pos 49653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49653
+#010909 #:#:# server id 1 end_log_pos 49729 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 49729
+#010909 #:#:# server id 1 end_log_pos 49773 Rotate to master-bin.000002 pos: 4
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+# at 4
+#010909 #:#:# server id 1 end_log_pos 107 Start: binlog v 4, server v 5.5.1-beta-debug-log created 010909 #:#:#
+# at 107
+#010909 #:#:# server id 1 end_log_pos 200 Query thread_id=2 exec_time=# error_code=0
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=2/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+CREATE TABLE t1 (c65 TINYBLOB)
+/*!*/;
+# at 200
+#010909 #:#:# server id 1 end_log_pos 268 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 268
+# at 310
+#010909 #:#:# server id 1 end_log_pos 310 Table_map: `test`.`t1` mapped to number 77
+#010909 #:#:# server id 1 end_log_pos 350 Write_rows: table id 77 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='tinyblob1' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
+# at 350
+#010909 #:#:# server id 1 end_log_pos 419 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 419
+#010909 #:#:# server id 1 end_log_pos 487 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 487
+# at 529
+#010909 #:#:# server id 1 end_log_pos 529 Table_map: `test`.`t1` mapped to number 77
+#010909 #:#:# server id 1 end_log_pos 569 Delete_rows: table id 77 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='tinyblob1' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
+# at 569
+#010909 #:#:# server id 1 end_log_pos 638 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 638
+#010909 #:#:# server id 1 end_log_pos 714 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 714
+#010909 #:#:# server id 1 end_log_pos 803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c68 BLOB)
+/*!*/;
+# at 803
+#010909 #:#:# server id 1 end_log_pos 871 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 871
+# at 913
+#010909 #:#:# server id 1 end_log_pos 913 Table_map: `test`.`t1` mapped to number 78
+#010909 #:#:# server id 1 end_log_pos 950 Write_rows: table id 78 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='blob1' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
+# at 950
+#010909 #:#:# server id 1 end_log_pos 1019 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1019
+#010909 #:#:# server id 1 end_log_pos 1087 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1087
+# at 1129
+#010909 #:#:# server id 1 end_log_pos 1129 Table_map: `test`.`t1` mapped to number 78
+#010909 #:#:# server id 1 end_log_pos 1166 Delete_rows: table id 78 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='blob1' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
+# at 1166
+#010909 #:#:# server id 1 end_log_pos 1235 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1235
+#010909 #:#:# server id 1 end_log_pos 1311 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 1311
+#010909 #:#:# server id 1 end_log_pos 1406 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c71 MEDIUMBLOB)
+/*!*/;
+# at 1406
+#010909 #:#:# server id 1 end_log_pos 1474 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1474
+# at 1516
+#010909 #:#:# server id 1 end_log_pos 1516 Table_map: `test`.`t1` mapped to number 79
+#010909 #:#:# server id 1 end_log_pos 1560 Write_rows: table id 79 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='mediumblob1' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
+# at 1560
+#010909 #:#:# server id 1 end_log_pos 1629 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1629
+#010909 #:#:# server id 1 end_log_pos 1697 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1697
+# at 1739
+#010909 #:#:# server id 1 end_log_pos 1739 Table_map: `test`.`t1` mapped to number 79
+#010909 #:#:# server id 1 end_log_pos 1783 Delete_rows: table id 79 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='mediumblob1' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
+# at 1783
+#010909 #:#:# server id 1 end_log_pos 1852 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1852
+#010909 #:#:# server id 1 end_log_pos 1928 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 1928
+#010909 #:#:# server id 1 end_log_pos 2021 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c74 LONGBLOB)
+/*!*/;
+# at 2021
+#010909 #:#:# server id 1 end_log_pos 2089 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2089
+# at 2131
+#010909 #:#:# server id 1 end_log_pos 2131 Table_map: `test`.`t1` mapped to number 80
+#010909 #:#:# server id 1 end_log_pos 2174 Write_rows: table id 80 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='longblob1' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
+# at 2174
+#010909 #:#:# server id 1 end_log_pos 2243 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2243
+#010909 #:#:# server id 1 end_log_pos 2311 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2311
+# at 2353
+#010909 #:#:# server id 1 end_log_pos 2353 Table_map: `test`.`t1` mapped to number 80
+#010909 #:#:# server id 1 end_log_pos 2396 Delete_rows: table id 80 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='longblob1' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
+# at 2396
+#010909 #:#:# server id 1 end_log_pos 2465 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2465
+#010909 #:#:# server id 1 end_log_pos 2541 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 2541
+#010909 #:#:# server id 1 end_log_pos 2634 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c66 TINYTEXT)
+/*!*/;
+# at 2634
+#010909 #:#:# server id 1 end_log_pos 2702 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2702
+# at 2744
+#010909 #:#:# server id 1 end_log_pos 2744 Table_map: `test`.`t1` mapped to number 81
+#010909 #:#:# server id 1 end_log_pos 2784 Write_rows: table id 81 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='tinytext1' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
+# at 2784
+#010909 #:#:# server id 1 end_log_pos 2853 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2853
+#010909 #:#:# server id 1 end_log_pos 2921 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2921
+# at 2963
+#010909 #:#:# server id 1 end_log_pos 2963 Table_map: `test`.`t1` mapped to number 81
+#010909 #:#:# server id 1 end_log_pos 3003 Delete_rows: table id 81 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='tinytext1' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
+# at 3003
+#010909 #:#:# server id 1 end_log_pos 3072 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3072
+#010909 #:#:# server id 1 end_log_pos 3148 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3148
+#010909 #:#:# server id 1 end_log_pos 3237 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c69 TEXT)
+/*!*/;
+# at 3237
+#010909 #:#:# server id 1 end_log_pos 3305 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3305
+# at 3347
+#010909 #:#:# server id 1 end_log_pos 3347 Table_map: `test`.`t1` mapped to number 82
+#010909 #:#:# server id 1 end_log_pos 3384 Write_rows: table id 82 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='text1' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
+# at 3384
+#010909 #:#:# server id 1 end_log_pos 3453 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3453
+#010909 #:#:# server id 1 end_log_pos 3521 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3521
+# at 3563
+#010909 #:#:# server id 1 end_log_pos 3563 Table_map: `test`.`t1` mapped to number 82
+#010909 #:#:# server id 1 end_log_pos 3600 Delete_rows: table id 82 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='text1' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
+# at 3600
+#010909 #:#:# server id 1 end_log_pos 3669 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3669
+#010909 #:#:# server id 1 end_log_pos 3745 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3745
+#010909 #:#:# server id 1 end_log_pos 3840 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c72 MEDIUMTEXT)
+/*!*/;
+# at 3840
+#010909 #:#:# server id 1 end_log_pos 3908 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3908
+# at 3950
+#010909 #:#:# server id 1 end_log_pos 3950 Table_map: `test`.`t1` mapped to number 83
+#010909 #:#:# server id 1 end_log_pos 3994 Write_rows: table id 83 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='mediumtext1' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
+# at 3994
+#010909 #:#:# server id 1 end_log_pos 4063 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4063
+#010909 #:#:# server id 1 end_log_pos 4131 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4131
+# at 4173
+#010909 #:#:# server id 1 end_log_pos 4173 Table_map: `test`.`t1` mapped to number 83
+#010909 #:#:# server id 1 end_log_pos 4217 Delete_rows: table id 83 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='mediumtext1' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
+# at 4217
+#010909 #:#:# server id 1 end_log_pos 4286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4286
+#010909 #:#:# server id 1 end_log_pos 4362 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 4362
+#010909 #:#:# server id 1 end_log_pos 4455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c75 LONGTEXT)
+/*!*/;
+# at 4455
+#010909 #:#:# server id 1 end_log_pos 4523 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4523
+# at 4565
+#010909 #:#:# server id 1 end_log_pos 4565 Table_map: `test`.`t1` mapped to number 84
+#010909 #:#:# server id 1 end_log_pos 4608 Write_rows: table id 84 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='longtext1' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
+# at 4608
+#010909 #:#:# server id 1 end_log_pos 4677 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4677
+#010909 #:#:# server id 1 end_log_pos 4745 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4745
+# at 4787
+#010909 #:#:# server id 1 end_log_pos 4787 Table_map: `test`.`t1` mapped to number 84
+#010909 #:#:# server id 1 end_log_pos 4830 Delete_rows: table id 84 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='longtext1' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
+# at 4830
+#010909 #:#:# server id 1 end_log_pos 4899 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4899
+#010909 #:#:# server id 1 end_log_pos 4975 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 4975
+#010909 #:#:# server id 1 end_log_pos 5087 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c67 TINYTEXT CHARACTER SET UCS2)
+/*!*/;
+# at 5087
+#010909 #:#:# server id 1 end_log_pos 5155 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5155
+# at 5197
+#010909 #:#:# server id 1 end_log_pos 5197 Table_map: `test`.`t1` mapped to number 85
+#010909 #:#:# server id 1 end_log_pos 5246 Write_rows: table id 85 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x001' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
+# at 5246
+#010909 #:#:# server id 1 end_log_pos 5315 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5315
+#010909 #:#:# server id 1 end_log_pos 5383 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5383
+# at 5425
+#010909 #:#:# server id 1 end_log_pos 5425 Table_map: `test`.`t1` mapped to number 85
+#010909 #:#:# server id 1 end_log_pos 5474 Delete_rows: table id 85 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x001' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
+# at 5474
+#010909 #:#:# server id 1 end_log_pos 5543 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5543
+#010909 #:#:# server id 1 end_log_pos 5619 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 5619
+#010909 #:#:# server id 1 end_log_pos 5727 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c70 TEXT CHARACTER SET UCS2)
+/*!*/;
+# at 5727
+#010909 #:#:# server id 1 end_log_pos 5795 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5795
+# at 5837
+#010909 #:#:# server id 1 end_log_pos 5837 Table_map: `test`.`t1` mapped to number 86
+#010909 #:#:# server id 1 end_log_pos 5879 Write_rows: table id 86 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00t\x00e\x00x\x00t\x001' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
+# at 5879
+#010909 #:#:# server id 1 end_log_pos 5948 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5948
+#010909 #:#:# server id 1 end_log_pos 6016 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6016
+# at 6058
+#010909 #:#:# server id 1 end_log_pos 6058 Table_map: `test`.`t1` mapped to number 86
+#010909 #:#:# server id 1 end_log_pos 6100 Delete_rows: table id 86 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00t\x00e\x00x\x00t\x001' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
+# at 6100
+#010909 #:#:# server id 1 end_log_pos 6169 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6169
+#010909 #:#:# server id 1 end_log_pos 6245 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6245
+#010909 #:#:# server id 1 end_log_pos 6359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c73 MEDIUMTEXT CHARACTER SET UCS2)
+/*!*/;
+# at 6359
+#010909 #:#:# server id 1 end_log_pos 6427 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6427
+# at 6469
+#010909 #:#:# server id 1 end_log_pos 6469 Table_map: `test`.`t1` mapped to number 87
+#010909 #:#:# server id 1 end_log_pos 6524 Write_rows: table id 87 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x001' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
+# at 6524
+#010909 #:#:# server id 1 end_log_pos 6593 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6593
+#010909 #:#:# server id 1 end_log_pos 6661 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6661
+# at 6703
+#010909 #:#:# server id 1 end_log_pos 6703 Table_map: `test`.`t1` mapped to number 87
+#010909 #:#:# server id 1 end_log_pos 6758 Delete_rows: table id 87 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x001' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
+# at 6758
+#010909 #:#:# server id 1 end_log_pos 6827 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6827
+#010909 #:#:# server id 1 end_log_pos 6903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6903
+#010909 #:#:# server id 1 end_log_pos 7015 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c76 LONGTEXT CHARACTER SET UCS2)
+/*!*/;
+# at 7015
+#010909 #:#:# server id 1 end_log_pos 7083 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7083
+# at 7125
+#010909 #:#:# server id 1 end_log_pos 7125 Table_map: `test`.`t1` mapped to number 88
+#010909 #:#:# server id 1 end_log_pos 7177 Write_rows: table id 88 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x001' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
+# at 7177
+#010909 #:#:# server id 1 end_log_pos 7246 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7246
+#010909 #:#:# server id 1 end_log_pos 7314 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7314
+# at 7356
+#010909 #:#:# server id 1 end_log_pos 7356 Table_map: `test`.`t1` mapped to number 88
+#010909 #:#:# server id 1 end_log_pos 7408 Delete_rows: table id 88 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x001' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
+# at 7408
+#010909 #:#:# server id 1 end_log_pos 7477 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7477
+#010909 #:#:# server id 1 end_log_pos 7553 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 7553
+#010909 #:#:# server id 1 end_log_pos 7655 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c77 ENUM('a','b','c'))
+/*!*/;
+# at 7655
+#010909 #:#:# server id 1 end_log_pos 7723 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7723
+# at 7766
+#010909 #:#:# server id 1 end_log_pos 7766 Table_map: `test`.`t1` mapped to number 89
+#010909 #:#:# server id 1 end_log_pos 7797 Write_rows: table id 89 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
+# at 7797
+#010909 #:#:# server id 1 end_log_pos 7866 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7866
+#010909 #:#:# server id 1 end_log_pos 7934 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7934
+# at 7977
+#010909 #:#:# server id 1 end_log_pos 7977 Table_map: `test`.`t1` mapped to number 89
+#010909 #:#:# server id 1 end_log_pos 8008 Delete_rows: table id 89 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
+# at 8008
+#010909 #:#:# server id 1 end_log_pos 8077 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8077
+#010909 #:#:# server id 1 end_log_pos 8153 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8153
+#010909 #:#:# server id 1 end_log_pos 8266 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c78 SET('a','b','c','d','e','f'))
+/*!*/;
+# at 8266
+#010909 #:#:# server id 1 end_log_pos 8334 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8334
+# at 8377
+#010909 #:#:# server id 1 end_log_pos 8377 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 8408 Write_rows: table id 90 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00000011' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 8408
+#010909 #:#:# server id 1 end_log_pos 8477 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8477
+#010909 #:#:# server id 1 end_log_pos 8545 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8545
+# at 8588
+#010909 #:#:# server id 1 end_log_pos 8588 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 8619 Write_rows: table id 90 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00000101' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 8619
+#010909 #:#:# server id 1 end_log_pos 8688 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8688
+#010909 #:#:# server id 1 end_log_pos 8756 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8756
+# at 8799
+#010909 #:#:# server id 1 end_log_pos 8799 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 8830 Write_rows: table id 90 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 8830
+#010909 #:#:# server id 1 end_log_pos 8899 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8899
+#010909 #:#:# server id 1 end_log_pos 8967 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8967
+# at 9010
+#010909 #:#:# server id 1 end_log_pos 9010 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 9041 Write_rows: table id 90 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 9041
+#010909 #:#:# server id 1 end_log_pos 9110 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9110
+#010909 #:#:# server id 1 end_log_pos 9178 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9178
+# at 9221
+#010909 #:#:# server id 1 end_log_pos 9221 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 9252 Write_rows: table id 90 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00001111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 9252
+#010909 #:#:# server id 1 end_log_pos 9321 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9321
+#010909 #:#:# server id 1 end_log_pos 9389 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9389
+# at 9432
+#010909 #:#:# server id 1 end_log_pos 9432 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 9463 Write_rows: table id 90 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00011111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 9463
+#010909 #:#:# server id 1 end_log_pos 9532 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9532
+#010909 #:#:# server id 1 end_log_pos 9600 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9600
+# at 9643
+#010909 #:#:# server id 1 end_log_pos 9643 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 9674 Write_rows: table id 90 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00111111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 9674
+#010909 #:#:# server id 1 end_log_pos 9743 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9743
+#010909 #:#:# server id 1 end_log_pos 9811 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9811
+# at 9854
+#010909 #:#:# server id 1 end_log_pos 9854 Table_map: `test`.`t1` mapped to number 90
+#010909 #:#:# server id 1 end_log_pos 9885 Delete_rows: table id 90 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=b'00000011' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
+# at 9885
+#010909 #:#:# server id 1 end_log_pos 9954 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9954
+#010909 #:#:# server id 1 end_log_pos 10030 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10030
+#010909 #:#:# server id 1 end_log_pos 10161 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (a int NOT NULL DEFAULT 0, b int NOT NULL DEFAULT 0)
+/*!*/;
+# at 10161
+#010909 #:#:# server id 1 end_log_pos 10292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t2 (a int NOT NULL DEFAULT 0, b int NOT NULL DEFAULT 0)
+/*!*/;
+# at 10292
+#010909 #:#:# server id 1 end_log_pos 10360 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10360
+# at 10402
+#010909 #:#:# server id 1 end_log_pos 10402 Table_map: `test`.`t1` mapped to number 91
+#010909 #:#:# server id 1 end_log_pos 10440 Write_rows: table id 91 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* INT meta=0 nullable=0 is_null=0 */
+### @2=0 /* INT meta=0 nullable=0 is_null=0 */
+# at 10440
+#010909 #:#:# server id 1 end_log_pos 10509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10509
+#010909 #:#:# server id 1 end_log_pos 10577 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10577
+# at 10619
+#010909 #:#:# server id 1 end_log_pos 10619 Table_map: `test`.`t1` mapped to number 91
+#010909 #:#:# server id 1 end_log_pos 10657 Write_rows: table id 91 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=0 /* INT meta=0 nullable=0 is_null=0 */
+### @2=1 /* INT meta=0 nullable=0 is_null=0 */
+# at 10657
+#010909 #:#:# server id 1 end_log_pos 10726 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10726
+#010909 #:#:# server id 1 end_log_pos 10794 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10794
+# at 10836
+#010909 #:#:# server id 1 end_log_pos 10836 Table_map: `test`.`t2` mapped to number 92
+#010909 #:#:# server id 1 end_log_pos 10874 Write_rows: table id 92 flags: STMT_END_F
+### INSERT INTO test.t2
+### SET
+### @1=1 /* INT meta=0 nullable=0 is_null=0 */
+### @2=0 /* INT meta=0 nullable=0 is_null=0 */
+# at 10874
+#010909 #:#:# server id 1 end_log_pos 10943 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10943
+#010909 #:#:# server id 1 end_log_pos 11011 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11011
+# at 11053
+#010909 #:#:# server id 1 end_log_pos 11053 Table_map: `test`.`t2` mapped to number 92
+#010909 #:#:# server id 1 end_log_pos 11091 Write_rows: table id 92 flags: STMT_END_F
+### INSERT INTO test.t2
+### SET
+### @1=0 /* INT meta=0 nullable=0 is_null=0 */
+### @2=1 /* INT meta=0 nullable=0 is_null=0 */
+# at 11091
+#010909 #:#:# server id 1 end_log_pos 11160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11160
+#010909 #:#:# server id 1 end_log_pos 11228 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11228
+# at 11270
+# at 11312
+# at 11378
+#010909 #:#:# server id 1 end_log_pos 11270 Table_map: `test`.`t1` mapped to number 91
+#010909 #:#:# server id 1 end_log_pos 11312 Table_map: `test`.`t2` mapped to number 92
+#010909 #:#:# server id 1 end_log_pos 11378 Update_rows: table id 91
+#010909 #:#:# server id 1 end_log_pos 11444 Update_rows: table id 92 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=1 /* INT meta=0 nullable=0 is_null=0 */
+### @2=0 /* INT meta=0 nullable=0 is_null=0 */
+### SET
+### @1=10 /* INT meta=0 nullable=0 is_null=0 */
+### @2=0 /* INT meta=0 nullable=0 is_null=0 */
+### UPDATE test.t1
+### WHERE
+### @1=0 /* INT meta=0 nullable=0 is_null=0 */
+### @2=1 /* INT meta=0 nullable=0 is_null=0 */
+### SET
+### @1=10 /* INT meta=0 nullable=0 is_null=0 */
+### @2=1 /* INT meta=0 nullable=0 is_null=0 */
+### UPDATE test.t2
+### WHERE
+### @1=1 /* INT meta=0 nullable=0 is_null=0 */
+### @2=0 /* INT meta=0 nullable=0 is_null=0 */
+### SET
+### @1=20 /* INT meta=0 nullable=0 is_null=0 */
+### @2=0 /* INT meta=0 nullable=0 is_null=0 */
+### UPDATE test.t2
+### WHERE
+### @1=0 /* INT meta=0 nullable=0 is_null=0 */
+### @2=1 /* INT meta=0 nullable=0 is_null=0 */
+### SET
+### @1=20 /* INT meta=0 nullable=0 is_null=0 */
+### @2=1 /* INT meta=0 nullable=0 is_null=0 */
+# at 11444
+#010909 #:#:# server id 1 end_log_pos 11513 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11513
+#010909 #:#:# server id 1 end_log_pos 11592 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1,t2
+/*!*/;
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+# at 4
+#091206 #:#:# server id 1 end_log_pos 107 Start: binlog v 4, server v 5.5.1-beta-debug-log created 091206 #:#:# at startup
+ROLLBACK/*!*/;
+# at 107
+#010909 #:#:# server id 1 end_log_pos 193 Query thread_id=2 exec_time=# error_code=0
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=2/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+# at 193
+#010909 #:#:# server id 1 end_log_pos 281 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT)
+/*!*/;
+# at 281
+#010909 #:#:# server id 1 end_log_pos 349 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 349
+# at 392
+#010909 #:#:# server id 1 end_log_pos 392 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 423 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 423
+#010909 #:#:# server id 1 end_log_pos 492 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 492
+#010909 #:#:# server id 1 end_log_pos 560 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 560
+# at 603
+#010909 #:#:# server id 1 end_log_pos 603 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 634 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 634
+#010909 #:#:# server id 1 end_log_pos 703 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 703
+#010909 #:#:# server id 1 end_log_pos 779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 779
+#010909 #:#:# server id 1 end_log_pos 870 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT(7))
+/*!*/;
+# at 870
+#010909 #:#:# server id 1 end_log_pos 938 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 938
+# at 981
+#010909 #:#:# server id 1 end_log_pos 981 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1012 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000001' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1012
+#010909 #:#:# server id 1 end_log_pos 1081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1081
+#010909 #:#:# server id 1 end_log_pos 1149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1149
+# at 1192
+#010909 #:#:# server id 1 end_log_pos 1192 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1223 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000010' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1223
+#010909 #:#:# server id 1 end_log_pos 1292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1292
+#010909 #:#:# server id 1 end_log_pos 1360 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1360
+# at 1403
+#010909 #:#:# server id 1 end_log_pos 1403 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1434 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000100' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1434
+#010909 #:#:# server id 1 end_log_pos 1503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1503
+#010909 #:#:# server id 1 end_log_pos 1571 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1571
+# at 1614
+#010909 #:#:# server id 1 end_log_pos 1614 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1645 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0001000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1645
+#010909 #:#:# server id 1 end_log_pos 1714 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1714
+#010909 #:#:# server id 1 end_log_pos 1782 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1782
+# at 1825
+#010909 #:#:# server id 1 end_log_pos 1825 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1856 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1856
+#010909 #:#:# server id 1 end_log_pos 1925 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1925
+#010909 #:#:# server id 1 end_log_pos 1993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1993
+# at 2036
+#010909 #:#:# server id 1 end_log_pos 2036 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2067 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0100000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2067
+#010909 #:#:# server id 1 end_log_pos 2136 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2136
+#010909 #:#:# server id 1 end_log_pos 2204 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2204
+# at 2247
+#010909 #:#:# server id 1 end_log_pos 2247 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2278 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1000000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2278
+#010909 #:#:# server id 1 end_log_pos 2347 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2347
+#010909 #:#:# server id 1 end_log_pos 2415 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2415
+# at 2458
+#010909 #:#:# server id 1 end_log_pos 2458 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2489 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2489
+#010909 #:#:# server id 1 end_log_pos 2558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2558
+#010909 #:#:# server id 1 end_log_pos 2626 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2626
+# at 2669
+#010909 #:#:# server id 1 end_log_pos 2669 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2700 Delete_rows: table id 24 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2700
+#010909 #:#:# server id 1 end_log_pos 2769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2769
+#010909 #:#:# server id 1 end_log_pos 2837 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2837
+# at 2880
+#010909 #:#:# server id 1 end_log_pos 2880 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2914 Update_rows: table id 24 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+### SET
+### @1=b'0001111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2914
+#010909 #:#:# server id 1 end_log_pos 2983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2983
+#010909 #:#:# server id 1 end_log_pos 3059 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3059
+#010909 #:#:# server id 1 end_log_pos 3160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (a BIT(20), b CHAR(2))
+/*!*/;
+# at 3160
+#010909 #:#:# server id 1 end_log_pos 3228 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3228
+# at 3274
+#010909 #:#:# server id 1 end_log_pos 3274 Table_map: `test`.`t1` mapped to number 25
+#010909 #:#:# server id 1 end_log_pos 3310 Write_rows: table id 25 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00010010010010001001' /* BIT(20) meta=516 nullable=1 is_null=0 */
+### @2='ab' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 3310
+#010909 #:#:# server id 1 end_log_pos 3379 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3379
+#010909 #:#:# server id 1 end_log_pos 3455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3455
+#010909 #:#:# server id 1 end_log_pos 3547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c02 BIT(64))
+/*!*/;
+# at 3547
+#010909 #:#:# server id 1 end_log_pos 3615 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3615
+# at 3658
+#010909 #:#:# server id 1 end_log_pos 3658 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3696 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000001' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3696
+#010909 #:#:# server id 1 end_log_pos 3765 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3765
+#010909 #:#:# server id 1 end_log_pos 3833 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3833
+# at 3876
+#010909 #:#:# server id 1 end_log_pos 3876 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3914 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000010' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3914
+#010909 #:#:# server id 1 end_log_pos 3983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3983
+#010909 #:#:# server id 1 end_log_pos 4051 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4051
+# at 4094
+#010909 #:#:# server id 1 end_log_pos 4094 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4132 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000010000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4132
+#010909 #:#:# server id 1 end_log_pos 4201 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4201
+#010909 #:#:# server id 1 end_log_pos 4269 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4269
+# at 4312
+#010909 #:#:# server id 1 end_log_pos 4312 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4350 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4350
+#010909 #:#:# server id 1 end_log_pos 4419 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4419
+#010909 #:#:# server id 1 end_log_pos 4495 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 4495
+#010909 #:#:# server id 1 end_log_pos 4587 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c03 TINYINT)
+/*!*/;
+# at 4587
+#010909 #:#:# server id 1 end_log_pos 4655 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4655
+# at 4696
+#010909 #:#:# server id 1 end_log_pos 4696 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4731 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=3 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4731
+#010909 #:#:# server id 1 end_log_pos 4800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4800
+#010909 #:#:# server id 1 end_log_pos 4868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4868
+# at 4909
+#010909 #:#:# server id 1 end_log_pos 4909 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4940 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4940
+#010909 #:#:# server id 1 end_log_pos 5009 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5009
+#010909 #:#:# server id 1 end_log_pos 5077 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5077
+# at 5118
+#010909 #:#:# server id 1 end_log_pos 5118 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5152 Update_rows: table id 27 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5152
+#010909 #:#:# server id 1 end_log_pos 5221 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5221
+#010909 #:#:# server id 1 end_log_pos 5289 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5289
+# at 5330
+#010909 #:#:# server id 1 end_log_pos 5330 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5361 Delete_rows: table id 27 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5361
+#010909 #:#:# server id 1 end_log_pos 5430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5430
+#010909 #:#:# server id 1 end_log_pos 5506 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 5506
+#010909 #:#:# server id 1 end_log_pos 5607 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c04 TINYINT UNSIGNED)
+/*!*/;
+# at 5607
+#010909 #:#:# server id 1 end_log_pos 5675 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5675
+# at 5716
+#010909 #:#:# server id 1 end_log_pos 5716 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5749 Write_rows: table id 28 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5749
+#010909 #:#:# server id 1 end_log_pos 5818 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5818
+#010909 #:#:# server id 1 end_log_pos 5886 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5886
+# at 5927
+#010909 #:#:# server id 1 end_log_pos 5927 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5958 Delete_rows: table id 28 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5958
+#010909 #:#:# server id 1 end_log_pos 6027 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6027
+#010909 #:#:# server id 1 end_log_pos 6103 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6103
+#010909 #:#:# server id 1 end_log_pos 6192 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c06 BOOL)
+/*!*/;
+# at 6192
+#010909 #:#:# server id 1 end_log_pos 6260 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6260
+# at 6301
+#010909 #:#:# server id 1 end_log_pos 6301 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6332 Write_rows: table id 29 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6332
+#010909 #:#:# server id 1 end_log_pos 6401 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6401
+#010909 #:#:# server id 1 end_log_pos 6469 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6469
+# at 6510
+#010909 #:#:# server id 1 end_log_pos 6510 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6541 Delete_rows: table id 29 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6541
+#010909 #:#:# server id 1 end_log_pos 6610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6610
+#010909 #:#:# server id 1 end_log_pos 6686 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6686
+#010909 #:#:# server id 1 end_log_pos 6779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c07 SMALLINT)
+/*!*/;
+# at 6779
+#010909 #:#:# server id 1 end_log_pos 6847 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6847
+# at 6888
+#010909 #:#:# server id 1 end_log_pos 6888 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 6920 Write_rows: table id 30 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 6920
+#010909 #:#:# server id 1 end_log_pos 6989 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6989
+#010909 #:#:# server id 1 end_log_pos 7057 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7057
+# at 7098
+#010909 #:#:# server id 1 end_log_pos 7098 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 7130 Delete_rows: table id 30 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7130
+#010909 #:#:# server id 1 end_log_pos 7199 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7199
+#010909 #:#:# server id 1 end_log_pos 7275 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 7275
+#010909 #:#:# server id 1 end_log_pos 7377 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c08 SMALLINT UNSIGNED)
+/*!*/;
+# at 7377
+#010909 #:#:# server id 1 end_log_pos 7445 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7445
+# at 7486
+#010909 #:#:# server id 1 end_log_pos 7486 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7521 Write_rows: table id 31 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7521
+#010909 #:#:# server id 1 end_log_pos 7590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7590
+#010909 #:#:# server id 1 end_log_pos 7658 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7658
+# at 7699
+#010909 #:#:# server id 1 end_log_pos 7699 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7735 Update_rows: table id 31 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7735
+#010909 #:#:# server id 1 end_log_pos 7804 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7804
+#010909 #:#:# server id 1 end_log_pos 7872 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7872
+# at 7913
+#010909 #:#:# server id 1 end_log_pos 7913 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7945 Delete_rows: table id 31 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7945
+#010909 #:#:# server id 1 end_log_pos 8014 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8014
+#010909 #:#:# server id 1 end_log_pos 8090 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8090
+#010909 #:#:# server id 1 end_log_pos 8184 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c10 MEDIUMINT)
+/*!*/;
+# at 8184
+#010909 #:#:# server id 1 end_log_pos 8252 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8252
+# at 8293
+#010909 #:#:# server id 1 end_log_pos 8293 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8326 Write_rows: table id 32 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8326
+#010909 #:#:# server id 1 end_log_pos 8395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8395
+#010909 #:#:# server id 1 end_log_pos 8463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8463
+# at 8504
+#010909 #:#:# server id 1 end_log_pos 8504 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8537 Delete_rows: table id 32 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8537
+#010909 #:#:# server id 1 end_log_pos 8606 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8606
+#010909 #:#:# server id 1 end_log_pos 8682 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8682
+#010909 #:#:# server id 1 end_log_pos 8785 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c11 MEDIUMINT UNSIGNED)
+/*!*/;
+# at 8785
+#010909 #:#:# server id 1 end_log_pos 8853 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8853
+# at 8894
+#010909 #:#:# server id 1 end_log_pos 8894 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 8931 Write_rows: table id 33 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8931
+#010909 #:#:# server id 1 end_log_pos 9000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9000
+#010909 #:#:# server id 1 end_log_pos 9068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9068
+# at 9109
+#010909 #:#:# server id 1 end_log_pos 9109 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9147 Update_rows: table id 33 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9147
+#010909 #:#:# server id 1 end_log_pos 9216 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9216
+#010909 #:#:# server id 1 end_log_pos 9284 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9284
+# at 9325
+#010909 #:#:# server id 1 end_log_pos 9325 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9358 Delete_rows: table id 33 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9358
+#010909 #:#:# server id 1 end_log_pos 9427 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9427
+#010909 #:#:# server id 1 end_log_pos 9503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 9503
+#010909 #:#:# server id 1 end_log_pos 9591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c13 INT)
+/*!*/;
+# at 9591
+#010909 #:#:# server id 1 end_log_pos 9659 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9659
+# at 9700
+#010909 #:#:# server id 1 end_log_pos 9700 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9734 Write_rows: table id 34 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9734
+#010909 #:#:# server id 1 end_log_pos 9803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9803
+#010909 #:#:# server id 1 end_log_pos 9871 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9871
+# at 9912
+#010909 #:#:# server id 1 end_log_pos 9912 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9946 Delete_rows: table id 34 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9946
+#010909 #:#:# server id 1 end_log_pos 10015 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10015
+#010909 #:#:# server id 1 end_log_pos 10091 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10091
+#010909 #:#:# server id 1 end_log_pos 10188 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c14 INT UNSIGNED)
+/*!*/;
+# at 10188
+#010909 #:#:# server id 1 end_log_pos 10256 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10256
+# at 10297
+#010909 #:#:# server id 1 end_log_pos 10297 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10336 Write_rows: table id 35 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10336
+#010909 #:#:# server id 1 end_log_pos 10405 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10405
+#010909 #:#:# server id 1 end_log_pos 10473 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10473
+# at 10514
+#010909 #:#:# server id 1 end_log_pos 10514 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10554 Update_rows: table id 35 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* INT meta=0 nullable=1 is_null=0 */
+# at 10554
+#010909 #:#:# server id 1 end_log_pos 10623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10623
+#010909 #:#:# server id 1 end_log_pos 10691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10691
+# at 10732
+#010909 #:#:# server id 1 end_log_pos 10732 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10766 Delete_rows: table id 35 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10766
+#010909 #:#:# server id 1 end_log_pos 10835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10835
+#010909 #:#:# server id 1 end_log_pos 10911 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10911
+#010909 #:#:# server id 1 end_log_pos 11002 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c16 BIGINT)
+/*!*/;
+# at 11002
+#010909 #:#:# server id 1 end_log_pos 11070 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11070
+# at 11111
+#010909 #:#:# server id 1 end_log_pos 11111 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11149 Write_rows: table id 36 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11149
+#010909 #:#:# server id 1 end_log_pos 11218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11218
+#010909 #:#:# server id 1 end_log_pos 11286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11286
+# at 11327
+#010909 #:#:# server id 1 end_log_pos 11327 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11365 Delete_rows: table id 36 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11365
+#010909 #:#:# server id 1 end_log_pos 11434 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11434
+#010909 #:#:# server id 1 end_log_pos 11510 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 11510
+#010909 #:#:# server id 1 end_log_pos 11610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c17 BIGINT UNSIGNED)
+/*!*/;
+# at 11610
+#010909 #:#:# server id 1 end_log_pos 11678 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11678
+# at 11719
+#010909 #:#:# server id 1 end_log_pos 11719 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11766 Write_rows: table id 37 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11766
+#010909 #:#:# server id 1 end_log_pos 11835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11835
+#010909 #:#:# server id 1 end_log_pos 11903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11903
+# at 11944
+#010909 #:#:# server id 1 end_log_pos 11944 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11992 Update_rows: table id 37 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11992
+#010909 #:#:# server id 1 end_log_pos 12061 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12061
+#010909 #:#:# server id 1 end_log_pos 12129 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12129
+# at 12170
+#010909 #:#:# server id 1 end_log_pos 12170 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 12208 Delete_rows: table id 37 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 12208
+#010909 #:#:# server id 1 end_log_pos 12277 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12277
+#010909 #:#:# server id 1 end_log_pos 12353 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12353
+#010909 #:#:# server id 1 end_log_pos 12443 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c19 FLOAT)
+/*!*/;
+# at 12443
+#010909 #:#:# server id 1 end_log_pos 12511 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12511
+# at 12553
+#010909 #:#:# server id 1 end_log_pos 12553 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12587 Write_rows: table id 38 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12587
+#010909 #:#:# server id 1 end_log_pos 12656 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12656
+#010909 #:#:# server id 1 end_log_pos 12724 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12724
+# at 12766
+#010909 #:#:# server id 1 end_log_pos 12766 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12800 Delete_rows: table id 38 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12800
+#010909 #:#:# server id 1 end_log_pos 12869 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12869
+#010909 #:#:# server id 1 end_log_pos 12945 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12945
+#010909 #:#:# server id 1 end_log_pos 13036 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c22 DOUBLE)
+/*!*/;
+# at 13036
+#010909 #:#:# server id 1 end_log_pos 13104 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13104
+# at 13146
+#010909 #:#:# server id 1 end_log_pos 13146 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13184 Write_rows: table id 39 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13184
+#010909 #:#:# server id 1 end_log_pos 13253 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13253
+#010909 #:#:# server id 1 end_log_pos 13321 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13321
+# at 13363
+#010909 #:#:# server id 1 end_log_pos 13363 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13401 Delete_rows: table id 39 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13401
+#010909 #:#:# server id 1 end_log_pos 13470 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13470
+#010909 #:#:# server id 1 end_log_pos 13546 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 13546
+#010909 #:#:# server id 1 end_log_pos 13644 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c25 DECIMAL(10,5))
+/*!*/;
+# at 13644
+#010909 #:#:# server id 1 end_log_pos 13712 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13712
+# at 13755
+#010909 #:#:# server id 1 end_log_pos 13755 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 13791 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 13791
+#010909 #:#:# server id 1 end_log_pos 13860 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13860
+#010909 #:#:# server id 1 end_log_pos 13928 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13928
+# at 13971
+#010909 #:#:# server id 1 end_log_pos 13971 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14007 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-000000543.210000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14007
+#010909 #:#:# server id 1 end_log_pos 14076 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14076
+#010909 #:#:# server id 1 end_log_pos 14144 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14144
+# at 14187
+#010909 #:#:# server id 1 end_log_pos 14187 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14223 Delete_rows: table id 40 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14223
+#010909 #:#:# server id 1 end_log_pos 14292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14292
+#010909 #:#:# server id 1 end_log_pos 14368 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14368
+#010909 #:#:# server id 1 end_log_pos 14457 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c28 DATE)
+/*!*/;
+# at 14457
+#010909 #:#:# server id 1 end_log_pos 14525 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14525
+# at 14566
+#010909 #:#:# server id 1 end_log_pos 14566 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14599 Write_rows: table id 41 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14599
+#010909 #:#:# server id 1 end_log_pos 14668 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14668
+#010909 #:#:# server id 1 end_log_pos 14736 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14736
+# at 14777
+#010909 #:#:# server id 1 end_log_pos 14777 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14810 Delete_rows: table id 41 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14810
+#010909 #:#:# server id 1 end_log_pos 14879 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14879
+#010909 #:#:# server id 1 end_log_pos 14955 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14955
+#010909 #:#:# server id 1 end_log_pos 15048 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c29 DATETIME)
+/*!*/;
+# at 15048
+#010909 #:#:# server id 1 end_log_pos 15116 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15116
+# at 15157
+#010909 #:#:# server id 1 end_log_pos 15157 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15195 Write_rows: table id 42 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15195
+#010909 #:#:# server id 1 end_log_pos 15264 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15264
+#010909 #:#:# server id 1 end_log_pos 15332 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15332
+# at 15373
+#010909 #:#:# server id 1 end_log_pos 15373 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15411 Delete_rows: table id 42 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15411
+#010909 #:#:# server id 1 end_log_pos 15480 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15480
+#010909 #:#:# server id 1 end_log_pos 15556 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 15556
+#010909 #:#:# server id 1 end_log_pos 15650 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c30 TIMESTAMP)
+/*!*/;
+# at 15650
+#010909 #:#:# server id 1 end_log_pos 15726 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.time_zone='SYSTEM'/*!*/;
+BEGIN
+/*!*/;
+# at 15726
+# at 15767
+#010909 #:#:# server id 1 end_log_pos 15767 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 15801 Write_rows: table id 43 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 15801
+#010909 #:#:# server id 1 end_log_pos 15878 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15878
+#010909 #:#:# server id 1 end_log_pos 15954 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15954
+# at 15995
+#010909 #:#:# server id 1 end_log_pos 15995 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 16029 Delete_rows: table id 43 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 16029
+#010909 #:#:# server id 1 end_log_pos 16106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16106
+#010909 #:#:# server id 1 end_log_pos 16182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16182
+#010909 #:#:# server id 1 end_log_pos 16271 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c31 TIME)
+/*!*/;
+# at 16271
+#010909 #:#:# server id 1 end_log_pos 16339 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16339
+# at 16380
+#010909 #:#:# server id 1 end_log_pos 16380 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16413 Write_rows: table id 44 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16413
+#010909 #:#:# server id 1 end_log_pos 16482 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16482
+#010909 #:#:# server id 1 end_log_pos 16550 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16550
+# at 16591
+#010909 #:#:# server id 1 end_log_pos 16591 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16624 Delete_rows: table id 44 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16624
+#010909 #:#:# server id 1 end_log_pos 16693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16693
+#010909 #:#:# server id 1 end_log_pos 16769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16769
+#010909 #:#:# server id 1 end_log_pos 16858 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c32 YEAR)
+/*!*/;
+# at 16858
+#010909 #:#:# server id 1 end_log_pos 16926 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16926
+# at 16967
+#010909 #:#:# server id 1 end_log_pos 16967 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 16998 Write_rows: table id 45 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 16998
+#010909 #:#:# server id 1 end_log_pos 17067 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17067
+#010909 #:#:# server id 1 end_log_pos 17135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17135
+# at 17176
+#010909 #:#:# server id 1 end_log_pos 17176 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 17207 Delete_rows: table id 45 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 17207
+#010909 #:#:# server id 1 end_log_pos 17276 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17276
+#010909 #:#:# server id 1 end_log_pos 17352 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17352
+#010909 #:#:# server id 1 end_log_pos 17441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c33 CHAR)
+/*!*/;
+# at 17441
+#010909 #:#:# server id 1 end_log_pos 17509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17509
+# at 17552
+#010909 #:#:# server id 1 end_log_pos 17552 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17584 Write_rows: table id 46 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17584
+#010909 #:#:# server id 1 end_log_pos 17653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17653
+#010909 #:#:# server id 1 end_log_pos 17721 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17721
+# at 17764
+#010909 #:#:# server id 1 end_log_pos 17764 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17796 Delete_rows: table id 46 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17796
+#010909 #:#:# server id 1 end_log_pos 17865 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17865
+#010909 #:#:# server id 1 end_log_pos 17941 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17941
+#010909 #:#:# server id 1 end_log_pos 18033 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c34 CHAR(0))
+/*!*/;
+# at 18033
+#010909 #:#:# server id 1 end_log_pos 18101 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18101
+# at 18144
+#010909 #:#:# server id 1 end_log_pos 18144 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18175 Write_rows: table id 47 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18175
+#010909 #:#:# server id 1 end_log_pos 18244 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18244
+#010909 #:#:# server id 1 end_log_pos 18312 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18312
+# at 18355
+#010909 #:#:# server id 1 end_log_pos 18355 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18386 Delete_rows: table id 47 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18386
+#010909 #:#:# server id 1 end_log_pos 18455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18455
+#010909 #:#:# server id 1 end_log_pos 18531 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 18531
+#010909 #:#:# server id 1 end_log_pos 18623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c35 CHAR(1))
+/*!*/;
+# at 18623
+#010909 #:#:# server id 1 end_log_pos 18691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18691
+# at 18734
+#010909 #:#:# server id 1 end_log_pos 18734 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18766 Write_rows: table id 48 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18766
+#010909 #:#:# server id 1 end_log_pos 18835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18835
+#010909 #:#:# server id 1 end_log_pos 18903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18903
+# at 18946
+#010909 #:#:# server id 1 end_log_pos 18946 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18978 Delete_rows: table id 48 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18978
+#010909 #:#:# server id 1 end_log_pos 19047 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19047
+#010909 #:#:# server id 1 end_log_pos 19123 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 19123
+#010909 #:#:# server id 1 end_log_pos 19217 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c36 CHAR(255))
+/*!*/;
+# at 19217
+#010909 #:#:# server id 1 end_log_pos 19285 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19285
+# at 19328
+#010909 #:#:# server id 1 end_log_pos 19328 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 19614 Write_rows: table id 49 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 19614
+#010909 #:#:# server id 1 end_log_pos 19683 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19683
+#010909 #:#:# server id 1 end_log_pos 19751 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19751
+# at 19794
+#010909 #:#:# server id 1 end_log_pos 19794 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 20080 Delete_rows: table id 49 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 20080
+#010909 #:#:# server id 1 end_log_pos 20149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20149
+#010909 #:#:# server id 1 end_log_pos 20225 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20225
+#010909 #:#:# server id 1 end_log_pos 20323 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c37 NATIONAL CHAR)
+/*!*/;
+# at 20323
+#010909 #:#:# server id 1 end_log_pos 20391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20391
+# at 20434
+#010909 #:#:# server id 1 end_log_pos 20434 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20466 Write_rows: table id 50 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20466
+#010909 #:#:# server id 1 end_log_pos 20535 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20535
+#010909 #:#:# server id 1 end_log_pos 20603 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20603
+# at 20646
+#010909 #:#:# server id 1 end_log_pos 20646 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20678 Delete_rows: table id 50 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20678
+#010909 #:#:# server id 1 end_log_pos 20747 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20747
+#010909 #:#:# server id 1 end_log_pos 20823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20823
+#010909 #:#:# server id 1 end_log_pos 20924 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c38 NATIONAL CHAR(0))
+/*!*/;
+# at 20924
+#010909 #:#:# server id 1 end_log_pos 20992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20992
+# at 21035
+#010909 #:#:# server id 1 end_log_pos 21035 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21066 Write_rows: table id 51 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21066
+#010909 #:#:# server id 1 end_log_pos 21135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21135
+#010909 #:#:# server id 1 end_log_pos 21203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21203
+# at 21246
+#010909 #:#:# server id 1 end_log_pos 21246 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21277 Delete_rows: table id 51 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21277
+#010909 #:#:# server id 1 end_log_pos 21346 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21346
+#010909 #:#:# server id 1 end_log_pos 21422 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 21422
+#010909 #:#:# server id 1 end_log_pos 21523 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c39 NATIONAL CHAR(1))
+/*!*/;
+# at 21523
+#010909 #:#:# server id 1 end_log_pos 21591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21591
+# at 21634
+#010909 #:#:# server id 1 end_log_pos 21634 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21666 Write_rows: table id 52 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21666
+#010909 #:#:# server id 1 end_log_pos 21735 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21735
+#010909 #:#:# server id 1 end_log_pos 21803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21803
+# at 21846
+#010909 #:#:# server id 1 end_log_pos 21846 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21878 Delete_rows: table id 52 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21878
+#010909 #:#:# server id 1 end_log_pos 21947 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21947
+#010909 #:#:# server id 1 end_log_pos 22023 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 22023
+#010909 #:#:# server id 1 end_log_pos 22126 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c40 NATIONAL CHAR(255))
+/*!*/;
+# at 22126
+#010909 #:#:# server id 1 end_log_pos 22194 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22194
+# at 22237
+#010909 #:#:# server id 1 end_log_pos 22237 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 22524 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 22524
+#010909 #:#:# server id 1 end_log_pos 22593 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 22593
+#010909 #:#:# server id 1 end_log_pos 22661 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22661
+# at 22704
+#010909 #:#:# server id 1 end_log_pos 22704 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 23246 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 23246
+#010909 #:#:# server id 1 end_log_pos 23315 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 23315
+#010909 #:#:# server id 1 end_log_pos 23383 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 23383
+# at 23426
+#010909 #:#:# server id 1 end_log_pos 23426 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 24226 Delete_rows: table id 53 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 24226
+#010909 #:#:# server id 1 end_log_pos 24295 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24295
+#010909 #:#:# server id 1 end_log_pos 24371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24371
+#010909 #:#:# server id 1 end_log_pos 24479 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c41 CHAR CHARACTER SET UCS2)
+/*!*/;
+# at 24479
+#010909 #:#:# server id 1 end_log_pos 24547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24547
+# at 24590
+#010909 #:#:# server id 1 end_log_pos 24590 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24623 Write_rows: table id 54 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24623
+#010909 #:#:# server id 1 end_log_pos 24692 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24692
+#010909 #:#:# server id 1 end_log_pos 24760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24760
+# at 24803
+#010909 #:#:# server id 1 end_log_pos 24803 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24836 Delete_rows: table id 54 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24836
+#010909 #:#:# server id 1 end_log_pos 24905 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24905
+#010909 #:#:# server id 1 end_log_pos 24981 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24981
+#010909 #:#:# server id 1 end_log_pos 25092 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c42 CHAR(0) CHARACTER SET UCS2)
+/*!*/;
+# at 25092
+#010909 #:#:# server id 1 end_log_pos 25160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25160
+# at 25203
+#010909 #:#:# server id 1 end_log_pos 25203 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25234 Write_rows: table id 55 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25234
+#010909 #:#:# server id 1 end_log_pos 25303 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25303
+#010909 #:#:# server id 1 end_log_pos 25371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25371
+# at 25414
+#010909 #:#:# server id 1 end_log_pos 25414 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25445 Delete_rows: table id 55 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25445
+#010909 #:#:# server id 1 end_log_pos 25514 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25514
+#010909 #:#:# server id 1 end_log_pos 25590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 25590
+#010909 #:#:# server id 1 end_log_pos 25701 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c43 CHAR(1) CHARACTER SET UCS2)
+/*!*/;
+# at 25701
+#010909 #:#:# server id 1 end_log_pos 25769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25769
+# at 25812
+#010909 #:#:# server id 1 end_log_pos 25812 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 25845 Write_rows: table id 56 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 25845
+#010909 #:#:# server id 1 end_log_pos 25914 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25914
+#010909 #:#:# server id 1 end_log_pos 25982 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25982
+# at 26025
+#010909 #:#:# server id 1 end_log_pos 26025 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 26058 Delete_rows: table id 56 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 26058
+#010909 #:#:# server id 1 end_log_pos 26127 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 26127
+#010909 #:#:# server id 1 end_log_pos 26203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 26203
+#010909 #:#:# server id 1 end_log_pos 26316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c44 CHAR(255) CHARACTER SET UCS2)
+/*!*/;
+# at 26316
+#010909 #:#:# server id 1 end_log_pos 26384 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 26384
+# at 26427
+#010909 #:#:# server id 1 end_log_pos 26427 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 26969 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 26969
+#010909 #:#:# server id 1 end_log_pos 27038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27038
+#010909 #:#:# server id 1 end_log_pos 27106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27106
+# at 27149
+#010909 #:#:# server id 1 end_log_pos 27149 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 27691 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x00ING(510) meta=61182 nullable=1 is_null=0 */
+# at 27691
+#010909 #:#:# server id 1 end_log_pos 27760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27760
+#010909 #:#:# server id 1 end_log_pos 27828 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27828
+# at 27871
+# at 28413
+#010909 #:#:# server id 1 end_log_pos 27871 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 28413 Delete_rows: table id 57
+#010909 #:#:# server id 1 end_log_pos 28955 Delete_rows: table id 57 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00� /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 28955
+#010909 #:#:# server id 1 end_log_pos 29024 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29024
+#010909 #:#:# server id 1 end_log_pos 29100 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29100
+#010909 #:#:# server id 1 end_log_pos 29195 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c45 VARCHAR(0))
+/*!*/;
+# at 29195
+#010909 #:#:# server id 1 end_log_pos 29263 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29263
+# at 29306
+#010909 #:#:# server id 1 end_log_pos 29306 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29337 Write_rows: table id 58 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29337
+#010909 #:#:# server id 1 end_log_pos 29406 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29406
+#010909 #:#:# server id 1 end_log_pos 29474 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29474
+# at 29517
+#010909 #:#:# server id 1 end_log_pos 29517 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29548 Delete_rows: table id 58 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29548
+#010909 #:#:# server id 1 end_log_pos 29617 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29617
+#010909 #:#:# server id 1 end_log_pos 29693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29693
+#010909 #:#:# server id 1 end_log_pos 29788 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c46 VARCHAR(1))
+/*!*/;
+# at 29788
+#010909 #:#:# server id 1 end_log_pos 29856 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29856
+# at 29899
+#010909 #:#:# server id 1 end_log_pos 29899 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 29931 Write_rows: table id 59 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 29931
+#010909 #:#:# server id 1 end_log_pos 30000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30000
+#010909 #:#:# server id 1 end_log_pos 30068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30068
+# at 30111
+#010909 #:#:# server id 1 end_log_pos 30111 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 30143 Delete_rows: table id 59 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 30143
+#010909 #:#:# server id 1 end_log_pos 30212 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30212
+#010909 #:#:# server id 1 end_log_pos 30288 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 30288
+#010909 #:#:# server id 1 end_log_pos 30385 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c47 VARCHAR(255))
+/*!*/;
+# at 30385
+#010909 #:#:# server id 1 end_log_pos 30453 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30453
+# at 30496
+#010909 #:#:# server id 1 end_log_pos 30496 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 30782 Write_rows: table id 60 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 30782
+#010909 #:#:# server id 1 end_log_pos 30851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30851
+#010909 #:#:# server id 1 end_log_pos 30919 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30919
+# at 30962
+#010909 #:#:# server id 1 end_log_pos 30962 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 31248 Delete_rows: table id 60 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 31248
+#010909 #:#:# server id 1 end_log_pos 31317 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31317
+#010909 #:#:# server id 1 end_log_pos 31393 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 31393
+#010909 #:#:# server id 1 end_log_pos 31490 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c48 VARCHAR(261))
+/*!*/;
+# at 31490
+#010909 #:#:# server id 1 end_log_pos 31558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 31558
+# at 31601
+#010909 #:#:# server id 1 end_log_pos 31601 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 31894 Write_rows: table id 61 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 31894
+#010909 #:#:# server id 1 end_log_pos 31963 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31963
+#010909 #:#:# server id 1 end_log_pos 32031 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32031
+# at 32074
+#010909 #:#:# server id 1 end_log_pos 32074 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 32367 Delete_rows: table id 61 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 32367
+#010909 #:#:# server id 1 end_log_pos 32436 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32436
+#010909 #:#:# server id 1 end_log_pos 32512 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 32512
+#010909 #:#:# server id 1 end_log_pos 32616 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c49 NATIONAL VARCHAR(0))
+/*!*/;
+# at 32616
+#010909 #:#:# server id 1 end_log_pos 32684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32684
+# at 32727
+#010909 #:#:# server id 1 end_log_pos 32727 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32758 Write_rows: table id 62 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32758
+#010909 #:#:# server id 1 end_log_pos 32827 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32827
+#010909 #:#:# server id 1 end_log_pos 32895 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32895
+# at 32938
+#010909 #:#:# server id 1 end_log_pos 32938 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32969 Delete_rows: table id 62 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32969
+#010909 #:#:# server id 1 end_log_pos 33038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33038
+#010909 #:#:# server id 1 end_log_pos 33114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33114
+#010909 #:#:# server id 1 end_log_pos 33218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c50 NATIONAL VARCHAR(1))
+/*!*/;
+# at 33218
+#010909 #:#:# server id 1 end_log_pos 33286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33286
+# at 33329
+#010909 #:#:# server id 1 end_log_pos 33329 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33361 Write_rows: table id 63 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33361
+#010909 #:#:# server id 1 end_log_pos 33430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33430
+#010909 #:#:# server id 1 end_log_pos 33498 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33498
+# at 33541
+#010909 #:#:# server id 1 end_log_pos 33541 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33573 Delete_rows: table id 63 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33573
+#010909 #:#:# server id 1 end_log_pos 33642 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33642
+#010909 #:#:# server id 1 end_log_pos 33718 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33718
+#010909 #:#:# server id 1 end_log_pos 33824 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c51 NATIONAL VARCHAR(255))
+/*!*/;
+# at 33824
+#010909 #:#:# server id 1 end_log_pos 33892 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33892
+# at 33935
+#010909 #:#:# server id 1 end_log_pos 33935 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34222 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+# at 34222
+#010909 #:#:# server id 1 end_log_pos 34291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 34291
+#010909 #:#:# server id 1 end_log_pos 34359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 34359
+# at 34402
+#010909 #:#:# server id 1 end_log_pos 34402 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34944 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß1 is_null=0 */
+# at 34944
+#010909 #:#:# server id 1 end_log_pos 35013 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35013
+#010909 #:#:# server id 1 end_log_pos 35081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 35081
+# at 35124
+#010909 #:#:# server id 1 end_log_pos 35124 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 35924 Delete_rows: table id 64 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß0 */
+# at 35924
+#010909 #:#:# server id 1 end_log_pos 35993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35993
+#010909 #:#:# server id 1 end_log_pos 36069 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 36069
+#010909 #:#:# server id 1 end_log_pos 36175 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c52 NATIONAL VARCHAR(261))
+/*!*/;
+# at 36175
+#010909 #:#:# server id 1 end_log_pos 36243 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36243
+# at 36286
+#010909 #:#:# server id 1 end_log_pos 36286 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 36579 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+# at 36579
+#010909 #:#:# server id 1 end_log_pos 36648 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 36648
+#010909 #:#:# server id 1 end_log_pos 36716 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36716
+# at 36759
+#010909 #:#:# server id 1 end_log_pos 36759 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 37313 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß0 */
+# at 37313
+#010909 #:#:# server id 1 end_log_pos 37382 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 37382
+#010909 #:#:# server id 1 end_log_pos 37450 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 37450
+# at 37493
+#010909 #:#:# server id 1 end_log_pos 37493 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 38311 Delete_rows: table id 65 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßis_null=0 */
+# at 38311
+#010909 #:#:# server id 1 end_log_pos 38380 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38380
+#010909 #:#:# server id 1 end_log_pos 38456 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 38456
+#010909 #:#:# server id 1 end_log_pos 38570 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c53 VARCHAR(0) CHARACTER SET ucs2)
+/*!*/;
+# at 38570
+#010909 #:#:# server id 1 end_log_pos 38638 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38638
+# at 38681
+#010909 #:#:# server id 1 end_log_pos 38681 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38712 Write_rows: table id 66 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38712
+#010909 #:#:# server id 1 end_log_pos 38781 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38781
+#010909 #:#:# server id 1 end_log_pos 38849 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38849
+# at 38892
+#010909 #:#:# server id 1 end_log_pos 38892 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38923 Delete_rows: table id 66 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38923
+#010909 #:#:# server id 1 end_log_pos 38992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38992
+#010909 #:#:# server id 1 end_log_pos 39068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39068
+#010909 #:#:# server id 1 end_log_pos 39182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c54 VARCHAR(1) CHARACTER SET ucs2)
+/*!*/;
+# at 39182
+#010909 #:#:# server id 1 end_log_pos 39250 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39250
+# at 39293
+#010909 #:#:# server id 1 end_log_pos 39293 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39326 Write_rows: table id 67 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39326
+#010909 #:#:# server id 1 end_log_pos 39395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39395
+#010909 #:#:# server id 1 end_log_pos 39463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39463
+# at 39506
+#010909 #:#:# server id 1 end_log_pos 39506 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39539 Delete_rows: table id 67 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39539
+#010909 #:#:# server id 1 end_log_pos 39608 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39608
+#010909 #:#:# server id 1 end_log_pos 39684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39684
+#010909 #:#:# server id 1 end_log_pos 39800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c55 VARCHAR(255) CHARACTER SET ucs2)
+/*!*/;
+# at 39800
+#010909 #:#:# server id 1 end_log_pos 39868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39868
+# at 39911
+#010909 #:#:# server id 1 end_log_pos 39911 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 40451 Write_rows: table id 68 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 40451
+#010909 #:#:# server id 1 end_log_pos 40520 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 40520
+#010909 #:#:# server id 1 end_log_pos 40588 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 40588
+# at 40631
+#010909 #:#:# server id 1 end_log_pos 40631 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 41171 Delete_rows: table id 68 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 41171
+#010909 #:#:# server id 1 end_log_pos 41240 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 41240
+#010909 #:#:# server id 1 end_log_pos 41316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 41316
+#010909 #:#:# server id 1 end_log_pos 41432 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c56 VARCHAR(261) CHARACTER SET ucs2)
+/*!*/;
+# at 41432
+#010909 #:#:# server id 1 end_log_pos 41500 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 41500
+# at 41543
+#010909 #:#:# server id 1 end_log_pos 41543 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42095 Write_rows: table id 69 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42095
+#010909 #:#:# server id 1 end_log_pos 42164 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42164
+#010909 #:#:# server id 1 end_log_pos 42232 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 42232
+# at 42275
+#010909 #:#:# server id 1 end_log_pos 42275 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42827 Delete_rows: table id 69 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42827
+#010909 #:#:# server id 1 end_log_pos 42896 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42896
+#010909 #:#:# server id 1 end_log_pos 42972 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 42972
+#010909 #:#:# server id 1 end_log_pos 43063 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c57 BINARY)
+/*!*/;
+# at 43063
+#010909 #:#:# server id 1 end_log_pos 43131 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43131
+# at 43174
+#010909 #:#:# server id 1 end_log_pos 43174 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43205 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43205
+#010909 #:#:# server id 1 end_log_pos 43274 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43274
+#010909 #:#:# server id 1 end_log_pos 43342 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43342
+# at 43385
+#010909 #:#:# server id 1 end_log_pos 43385 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43417 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43417
+#010909 #:#:# server id 1 end_log_pos 43486 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43486
+#010909 #:#:# server id 1 end_log_pos 43554 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43554
+# at 43597
+#010909 #:#:# server id 1 end_log_pos 43597 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43629 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43629
+#010909 #:#:# server id 1 end_log_pos 43698 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43698
+#010909 #:#:# server id 1 end_log_pos 43766 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43766
+# at 43809
+#010909 #:#:# server id 1 end_log_pos 43809 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43841 Delete_rows: table id 70 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43841
+#010909 #:#:# server id 1 end_log_pos 43910 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43910
+#010909 #:#:# server id 1 end_log_pos 43986 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 43986
+#010909 #:#:# server id 1 end_log_pos 44080 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c58 BINARY(0))
+/*!*/;
+# at 44080
+#010909 #:#:# server id 1 end_log_pos 44148 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44148
+# at 44191
+#010909 #:#:# server id 1 end_log_pos 44191 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44222 Write_rows: table id 71 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44222
+#010909 #:#:# server id 1 end_log_pos 44291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44291
+#010909 #:#:# server id 1 end_log_pos 44359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44359
+# at 44402
+#010909 #:#:# server id 1 end_log_pos 44402 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44433 Delete_rows: table id 71 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44433
+#010909 #:#:# server id 1 end_log_pos 44502 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44502
+#010909 #:#:# server id 1 end_log_pos 44578 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 44578
+#010909 #:#:# server id 1 end_log_pos 44672 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c59 BINARY(1))
+/*!*/;
+# at 44672
+#010909 #:#:# server id 1 end_log_pos 44740 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44740
+# at 44783
+#010909 #:#:# server id 1 end_log_pos 44783 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 44814 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 44814
+#010909 #:#:# server id 1 end_log_pos 44883 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44883
+#010909 #:#:# server id 1 end_log_pos 44951 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44951
+# at 44994
+#010909 #:#:# server id 1 end_log_pos 44994 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45026 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45026
+#010909 #:#:# server id 1 end_log_pos 45095 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45095
+#010909 #:#:# server id 1 end_log_pos 45163 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45163
+# at 45206
+#010909 #:#:# server id 1 end_log_pos 45206 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45238 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45238
+#010909 #:#:# server id 1 end_log_pos 45307 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45307
+#010909 #:#:# server id 1 end_log_pos 45375 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45375
+# at 45418
+#010909 #:#:# server id 1 end_log_pos 45418 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45450 Delete_rows: table id 72 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45450
+#010909 #:#:# server id 1 end_log_pos 45519 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45519
+#010909 #:#:# server id 1 end_log_pos 45595 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 45595
+#010909 #:#:# server id 1 end_log_pos 45691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c60 BINARY(255))
+/*!*/;
+# at 45691
+#010909 #:#:# server id 1 end_log_pos 45759 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45759
+# at 45802
+#010909 #:#:# server id 1 end_log_pos 45802 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 45833 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 45833
+#010909 #:#:# server id 1 end_log_pos 45902 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45902
+#010909 #:#:# server id 1 end_log_pos 45970 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45970
+# at 46013
+#010909 #:#:# server id 1 end_log_pos 46013 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46045 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46045
+#010909 #:#:# server id 1 end_log_pos 46114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46114
+#010909 #:#:# server id 1 end_log_pos 46182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46182
+# at 46225
+#010909 #:#:# server id 1 end_log_pos 46225 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46495 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46495
+#010909 #:#:# server id 1 end_log_pos 46564 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46564
+#010909 #:#:# server id 1 end_log_pos 46632 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46632
+# at 46675
+#010909 #:#:# server id 1 end_log_pos 46675 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46706 Delete_rows: table id 73 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46706
+#010909 #:#:# server id 1 end_log_pos 46775 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46775
+#010909 #:#:# server id 1 end_log_pos 46851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 46851
+#010909 #:#:# server id 1 end_log_pos 46948 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c61 VARBINARY(0))
+/*!*/;
+# at 46948
+#010909 #:#:# server id 1 end_log_pos 47016 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47016
+# at 47059
+#010909 #:#:# server id 1 end_log_pos 47059 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47090 Write_rows: table id 74 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47090
+#010909 #:#:# server id 1 end_log_pos 47159 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47159
+#010909 #:#:# server id 1 end_log_pos 47227 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47227
+# at 47270
+#010909 #:#:# server id 1 end_log_pos 47270 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47301 Delete_rows: table id 74 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47301
+#010909 #:#:# server id 1 end_log_pos 47370 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47370
+#010909 #:#:# server id 1 end_log_pos 47446 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 47446
+#010909 #:#:# server id 1 end_log_pos 47543 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c62 VARBINARY(1))
+/*!*/;
+# at 47543
+#010909 #:#:# server id 1 end_log_pos 47611 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47611
+# at 47654
+#010909 #:#:# server id 1 end_log_pos 47654 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47686 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47686
+#010909 #:#:# server id 1 end_log_pos 47755 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47755
+#010909 #:#:# server id 1 end_log_pos 47823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47823
+# at 47866
+#010909 #:#:# server id 1 end_log_pos 47866 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47898 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47898
+#010909 #:#:# server id 1 end_log_pos 47967 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47967
+#010909 #:#:# server id 1 end_log_pos 48035 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48035
+# at 48078
+#010909 #:#:# server id 1 end_log_pos 48078 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48110 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48110
+#010909 #:#:# server id 1 end_log_pos 48179 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48179
+#010909 #:#:# server id 1 end_log_pos 48247 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48247
+# at 48290
+#010909 #:#:# server id 1 end_log_pos 48290 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48322 Delete_rows: table id 75 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48322
+#010909 #:#:# server id 1 end_log_pos 48391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48391
+#010909 #:#:# server id 1 end_log_pos 48467 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 48467
+#010909 #:#:# server id 1 end_log_pos 48566 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c63 VARBINARY(255))
+/*!*/;
+# at 48566
+#010909 #:#:# server id 1 end_log_pos 48634 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48634
+# at 48677
+#010909 #:#:# server id 1 end_log_pos 48677 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48709 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48709
+#010909 #:#:# server id 1 end_log_pos 48778 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48778
+#010909 #:#:# server id 1 end_log_pos 48846 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48846
+# at 48889
+#010909 #:#:# server id 1 end_log_pos 48889 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48921 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48921
+#010909 #:#:# server id 1 end_log_pos 48990 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48990
+#010909 #:#:# server id 1 end_log_pos 49058 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49058
+# at 49101
+#010909 #:#:# server id 1 end_log_pos 49101 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49372 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49372
+#010909 #:#:# server id 1 end_log_pos 49441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49441
+#010909 #:#:# server id 1 end_log_pos 49509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49509
+# at 49552
+#010909 #:#:# server id 1 end_log_pos 49552 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49584 Delete_rows: table id 76 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49584
+#010909 #:#:# server id 1 end_log_pos 49653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49653
+#010909 #:#:# server id 1 end_log_pos 49729 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 49729
+#010909 #:#:# server id 1 end_log_pos 49773 Rotate to master-bin.000002 pos: 4
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+/*!40019 SET @@session.max_insert_delayed_threads=0*/;
+/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
+DELIMITER /*!*/;
+# at 4
+#091206 #:#:# server id 1 end_log_pos 107 Start: binlog v 4, server v 5.5.1-beta-debug-log created 091206 #:#:# at startup
+ROLLBACK/*!*/;
+# at 107
+#010909 #:#:# server id 1 end_log_pos 193 Query thread_id=2 exec_time=# error_code=0
+use test/*!*/;
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.pseudo_thread_id=2/*!*/;
+SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
+SET @@session.sql_mode=0/*!*/;
+SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
+/*!\C latin1 *//*!*/;
+SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
+SET @@session.lc_time_names=0/*!*/;
+SET @@session.collation_database=DEFAULT/*!*/;
+drop table if exists t1
+/*!*/;
+# at 193
+#010909 #:#:# server id 1 end_log_pos 281 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT)
+/*!*/;
+# at 281
+#010909 #:#:# server id 1 end_log_pos 349 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 349
+# at 392
+#010909 #:#:# server id 1 end_log_pos 392 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 423 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 423
+#010909 #:#:# server id 1 end_log_pos 492 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 492
+#010909 #:#:# server id 1 end_log_pos 560 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 560
+# at 603
+#010909 #:#:# server id 1 end_log_pos 603 Table_map: `test`.`t1` mapped to number 23
+#010909 #:#:# server id 1 end_log_pos 634 Write_rows: table id 23 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
+# at 634
+#010909 #:#:# server id 1 end_log_pos 703 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 703
+#010909 #:#:# server id 1 end_log_pos 779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 779
+#010909 #:#:# server id 1 end_log_pos 870 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c01 BIT(7))
+/*!*/;
+# at 870
+#010909 #:#:# server id 1 end_log_pos 938 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 938
+# at 981
+#010909 #:#:# server id 1 end_log_pos 981 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1012 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000001' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1012
+#010909 #:#:# server id 1 end_log_pos 1081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1081
+#010909 #:#:# server id 1 end_log_pos 1149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1149
+# at 1192
+#010909 #:#:# server id 1 end_log_pos 1192 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1223 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000010' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1223
+#010909 #:#:# server id 1 end_log_pos 1292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1292
+#010909 #:#:# server id 1 end_log_pos 1360 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1360
+# at 1403
+#010909 #:#:# server id 1 end_log_pos 1403 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1434 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000100' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1434
+#010909 #:#:# server id 1 end_log_pos 1503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1503
+#010909 #:#:# server id 1 end_log_pos 1571 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1571
+# at 1614
+#010909 #:#:# server id 1 end_log_pos 1614 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1645 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0001000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1645
+#010909 #:#:# server id 1 end_log_pos 1714 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1714
+#010909 #:#:# server id 1 end_log_pos 1782 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1782
+# at 1825
+#010909 #:#:# server id 1 end_log_pos 1825 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 1856 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 1856
+#010909 #:#:# server id 1 end_log_pos 1925 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 1925
+#010909 #:#:# server id 1 end_log_pos 1993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 1993
+# at 2036
+#010909 #:#:# server id 1 end_log_pos 2036 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2067 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0100000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2067
+#010909 #:#:# server id 1 end_log_pos 2136 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2136
+#010909 #:#:# server id 1 end_log_pos 2204 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2204
+# at 2247
+#010909 #:#:# server id 1 end_log_pos 2247 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2278 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1000000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2278
+#010909 #:#:# server id 1 end_log_pos 2347 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2347
+#010909 #:#:# server id 1 end_log_pos 2415 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2415
+# at 2458
+#010909 #:#:# server id 1 end_log_pos 2458 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2489 Write_rows: table id 24 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2489
+#010909 #:#:# server id 1 end_log_pos 2558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2558
+#010909 #:#:# server id 1 end_log_pos 2626 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2626
+# at 2669
+#010909 #:#:# server id 1 end_log_pos 2669 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2700 Delete_rows: table id 24 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=b'1111111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2700
+#010909 #:#:# server id 1 end_log_pos 2769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2769
+#010909 #:#:# server id 1 end_log_pos 2837 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 2837
+# at 2880
+#010909 #:#:# server id 1 end_log_pos 2880 Table_map: `test`.`t1` mapped to number 24
+#010909 #:#:# server id 1 end_log_pos 2914 Update_rows: table id 24 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=b'0010000' /* BIT(7) meta=7 nullable=1 is_null=0 */
+### SET
+### @1=b'0001111' /* BIT(7) meta=7 nullable=1 is_null=0 */
+# at 2914
+#010909 #:#:# server id 1 end_log_pos 2983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 2983
+#010909 #:#:# server id 1 end_log_pos 3059 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3059
+#010909 #:#:# server id 1 end_log_pos 3160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (a BIT(20), b CHAR(2))
+/*!*/;
+# at 3160
+#010909 #:#:# server id 1 end_log_pos 3228 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3228
+# at 3274
+#010909 #:#:# server id 1 end_log_pos 3274 Table_map: `test`.`t1` mapped to number 25
+#010909 #:#:# server id 1 end_log_pos 3310 Write_rows: table id 25 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'00010010010010001001' /* BIT(20) meta=516 nullable=1 is_null=0 */
+### @2='ab' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 3310
+#010909 #:#:# server id 1 end_log_pos 3379 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3379
+#010909 #:#:# server id 1 end_log_pos 3455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 3455
+#010909 #:#:# server id 1 end_log_pos 3547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c02 BIT(64))
+/*!*/;
+# at 3547
+#010909 #:#:# server id 1 end_log_pos 3615 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3615
+# at 3658
+#010909 #:#:# server id 1 end_log_pos 3658 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3696 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000001' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3696
+#010909 #:#:# server id 1 end_log_pos 3765 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3765
+#010909 #:#:# server id 1 end_log_pos 3833 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 3833
+# at 3876
+#010909 #:#:# server id 1 end_log_pos 3876 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 3914 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000000000010' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 3914
+#010909 #:#:# server id 1 end_log_pos 3983 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 3983
+#010909 #:#:# server id 1 end_log_pos 4051 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4051
+# at 4094
+#010909 #:#:# server id 1 end_log_pos 4094 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4132 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'0000000000000000000000000000000000000000000000000000000010000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4132
+#010909 #:#:# server id 1 end_log_pos 4201 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4201
+#010909 #:#:# server id 1 end_log_pos 4269 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4269
+# at 4312
+#010909 #:#:# server id 1 end_log_pos 4312 Table_map: `test`.`t1` mapped to number 26
+#010909 #:#:# server id 1 end_log_pos 4350 Write_rows: table id 26 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
+# at 4350
+#010909 #:#:# server id 1 end_log_pos 4419 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4419
+#010909 #:#:# server id 1 end_log_pos 4495 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 4495
+#010909 #:#:# server id 1 end_log_pos 4587 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c03 TINYINT)
+/*!*/;
+# at 4587
+#010909 #:#:# server id 1 end_log_pos 4655 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4655
+# at 4696
+#010909 #:#:# server id 1 end_log_pos 4696 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4731 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=3 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4731
+#010909 #:#:# server id 1 end_log_pos 4800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 4800
+#010909 #:#:# server id 1 end_log_pos 4868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 4868
+# at 4909
+#010909 #:#:# server id 1 end_log_pos 4909 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 4940 Write_rows: table id 27 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 4940
+#010909 #:#:# server id 1 end_log_pos 5009 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5009
+#010909 #:#:# server id 1 end_log_pos 5077 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5077
+# at 5118
+#010909 #:#:# server id 1 end_log_pos 5118 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5152 Update_rows: table id 27 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5152
+#010909 #:#:# server id 1 end_log_pos 5221 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5221
+#010909 #:#:# server id 1 end_log_pos 5289 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5289
+# at 5330
+#010909 #:#:# server id 1 end_log_pos 5330 Table_map: `test`.`t1` mapped to number 27
+#010909 #:#:# server id 1 end_log_pos 5361 Delete_rows: table id 27 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5361
+#010909 #:#:# server id 1 end_log_pos 5430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5430
+#010909 #:#:# server id 1 end_log_pos 5506 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 5506
+#010909 #:#:# server id 1 end_log_pos 5607 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c04 TINYINT UNSIGNED)
+/*!*/;
+# at 5607
+#010909 #:#:# server id 1 end_log_pos 5675 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5675
+# at 5716
+#010909 #:#:# server id 1 end_log_pos 5716 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5749 Write_rows: table id 28 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5749
+#010909 #:#:# server id 1 end_log_pos 5818 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 5818
+#010909 #:#:# server id 1 end_log_pos 5886 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 5886
+# at 5927
+#010909 #:#:# server id 1 end_log_pos 5927 Table_map: `test`.`t1` mapped to number 28
+#010909 #:#:# server id 1 end_log_pos 5958 Delete_rows: table id 28 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 5958
+#010909 #:#:# server id 1 end_log_pos 6027 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6027
+#010909 #:#:# server id 1 end_log_pos 6103 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6103
+#010909 #:#:# server id 1 end_log_pos 6192 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c06 BOOL)
+/*!*/;
+# at 6192
+#010909 #:#:# server id 1 end_log_pos 6260 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6260
+# at 6301
+#010909 #:#:# server id 1 end_log_pos 6301 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6332 Write_rows: table id 29 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6332
+#010909 #:#:# server id 1 end_log_pos 6401 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6401
+#010909 #:#:# server id 1 end_log_pos 6469 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6469
+# at 6510
+#010909 #:#:# server id 1 end_log_pos 6510 Table_map: `test`.`t1` mapped to number 29
+#010909 #:#:# server id 1 end_log_pos 6541 Delete_rows: table id 29 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1 /* TINYINT meta=0 nullable=1 is_null=0 */
+# at 6541
+#010909 #:#:# server id 1 end_log_pos 6610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6610
+#010909 #:#:# server id 1 end_log_pos 6686 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 6686
+#010909 #:#:# server id 1 end_log_pos 6779 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c07 SMALLINT)
+/*!*/;
+# at 6779
+#010909 #:#:# server id 1 end_log_pos 6847 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 6847
+# at 6888
+#010909 #:#:# server id 1 end_log_pos 6888 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 6920 Write_rows: table id 30 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 6920
+#010909 #:#:# server id 1 end_log_pos 6989 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 6989
+#010909 #:#:# server id 1 end_log_pos 7057 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7057
+# at 7098
+#010909 #:#:# server id 1 end_log_pos 7098 Table_map: `test`.`t1` mapped to number 30
+#010909 #:#:# server id 1 end_log_pos 7130 Delete_rows: table id 30 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7130
+#010909 #:#:# server id 1 end_log_pos 7199 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7199
+#010909 #:#:# server id 1 end_log_pos 7275 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 7275
+#010909 #:#:# server id 1 end_log_pos 7377 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c08 SMALLINT UNSIGNED)
+/*!*/;
+# at 7377
+#010909 #:#:# server id 1 end_log_pos 7445 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7445
+# at 7486
+#010909 #:#:# server id 1 end_log_pos 7486 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7521 Write_rows: table id 31 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7521
+#010909 #:#:# server id 1 end_log_pos 7590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7590
+#010909 #:#:# server id 1 end_log_pos 7658 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7658
+# at 7699
+#010909 #:#:# server id 1 end_log_pos 7699 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7735 Update_rows: table id 31 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7735
+#010909 #:#:# server id 1 end_log_pos 7804 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 7804
+#010909 #:#:# server id 1 end_log_pos 7872 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 7872
+# at 7913
+#010909 #:#:# server id 1 end_log_pos 7913 Table_map: `test`.`t1` mapped to number 31
+#010909 #:#:# server id 1 end_log_pos 7945 Delete_rows: table id 31 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
+# at 7945
+#010909 #:#:# server id 1 end_log_pos 8014 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8014
+#010909 #:#:# server id 1 end_log_pos 8090 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8090
+#010909 #:#:# server id 1 end_log_pos 8184 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c10 MEDIUMINT)
+/*!*/;
+# at 8184
+#010909 #:#:# server id 1 end_log_pos 8252 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8252
+# at 8293
+#010909 #:#:# server id 1 end_log_pos 8293 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8326 Write_rows: table id 32 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8326
+#010909 #:#:# server id 1 end_log_pos 8395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8395
+#010909 #:#:# server id 1 end_log_pos 8463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8463
+# at 8504
+#010909 #:#:# server id 1 end_log_pos 8504 Table_map: `test`.`t1` mapped to number 32
+#010909 #:#:# server id 1 end_log_pos 8537 Delete_rows: table id 32 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=12345 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8537
+#010909 #:#:# server id 1 end_log_pos 8606 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 8606
+#010909 #:#:# server id 1 end_log_pos 8682 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 8682
+#010909 #:#:# server id 1 end_log_pos 8785 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c11 MEDIUMINT UNSIGNED)
+/*!*/;
+# at 8785
+#010909 #:#:# server id 1 end_log_pos 8853 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 8853
+# at 8894
+#010909 #:#:# server id 1 end_log_pos 8894 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 8931 Write_rows: table id 33 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 8931
+#010909 #:#:# server id 1 end_log_pos 9000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9000
+#010909 #:#:# server id 1 end_log_pos 9068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9068
+# at 9109
+#010909 #:#:# server id 1 end_log_pos 9109 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9147 Update_rows: table id 33 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9147
+#010909 #:#:# server id 1 end_log_pos 9216 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9216
+#010909 #:#:# server id 1 end_log_pos 9284 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9284
+# at 9325
+#010909 #:#:# server id 1 end_log_pos 9325 Table_map: `test`.`t1` mapped to number 33
+#010909 #:#:# server id 1 end_log_pos 9358 Delete_rows: table id 33 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
+# at 9358
+#010909 #:#:# server id 1 end_log_pos 9427 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9427
+#010909 #:#:# server id 1 end_log_pos 9503 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 9503
+#010909 #:#:# server id 1 end_log_pos 9591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c13 INT)
+/*!*/;
+# at 9591
+#010909 #:#:# server id 1 end_log_pos 9659 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9659
+# at 9700
+#010909 #:#:# server id 1 end_log_pos 9700 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9734 Write_rows: table id 34 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9734
+#010909 #:#:# server id 1 end_log_pos 9803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 9803
+#010909 #:#:# server id 1 end_log_pos 9871 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 9871
+# at 9912
+#010909 #:#:# server id 1 end_log_pos 9912 Table_map: `test`.`t1` mapped to number 34
+#010909 #:#:# server id 1 end_log_pos 9946 Delete_rows: table id 34 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123456 /* INT meta=0 nullable=1 is_null=0 */
+# at 9946
+#010909 #:#:# server id 1 end_log_pos 10015 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10015
+#010909 #:#:# server id 1 end_log_pos 10091 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10091
+#010909 #:#:# server id 1 end_log_pos 10188 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c14 INT UNSIGNED)
+/*!*/;
+# at 10188
+#010909 #:#:# server id 1 end_log_pos 10256 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10256
+# at 10297
+#010909 #:#:# server id 1 end_log_pos 10297 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10336 Write_rows: table id 35 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10336
+#010909 #:#:# server id 1 end_log_pos 10405 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10405
+#010909 #:#:# server id 1 end_log_pos 10473 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10473
+# at 10514
+#010909 #:#:# server id 1 end_log_pos 10514 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10554 Update_rows: table id 35 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* INT meta=0 nullable=1 is_null=0 */
+# at 10554
+#010909 #:#:# server id 1 end_log_pos 10623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10623
+#010909 #:#:# server id 1 end_log_pos 10691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 10691
+# at 10732
+#010909 #:#:# server id 1 end_log_pos 10732 Table_map: `test`.`t1` mapped to number 35
+#010909 #:#:# server id 1 end_log_pos 10766 Delete_rows: table id 35 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
+# at 10766
+#010909 #:#:# server id 1 end_log_pos 10835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 10835
+#010909 #:#:# server id 1 end_log_pos 10911 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 10911
+#010909 #:#:# server id 1 end_log_pos 11002 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c16 BIGINT)
+/*!*/;
+# at 11002
+#010909 #:#:# server id 1 end_log_pos 11070 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11070
+# at 11111
+#010909 #:#:# server id 1 end_log_pos 11111 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11149 Write_rows: table id 36 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11149
+#010909 #:#:# server id 1 end_log_pos 11218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11218
+#010909 #:#:# server id 1 end_log_pos 11286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11286
+# at 11327
+#010909 #:#:# server id 1 end_log_pos 11327 Table_map: `test`.`t1` mapped to number 36
+#010909 #:#:# server id 1 end_log_pos 11365 Delete_rows: table id 36 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=1234567890 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11365
+#010909 #:#:# server id 1 end_log_pos 11434 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11434
+#010909 #:#:# server id 1 end_log_pos 11510 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 11510
+#010909 #:#:# server id 1 end_log_pos 11610 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c17 BIGINT UNSIGNED)
+/*!*/;
+# at 11610
+#010909 #:#:# server id 1 end_log_pos 11678 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11678
+# at 11719
+#010909 #:#:# server id 1 end_log_pos 11719 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11766 Write_rows: table id 37 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### INSERT INTO test.t1
+### SET
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11766
+#010909 #:#:# server id 1 end_log_pos 11835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 11835
+#010909 #:#:# server id 1 end_log_pos 11903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 11903
+# at 11944
+#010909 #:#:# server id 1 end_log_pos 11944 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 11992 Update_rows: table id 37 flags: STMT_END_F
+### UPDATE test.t1
+### WHERE
+### @1=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
+### SET
+### @1=2 /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 11992
+#010909 #:#:# server id 1 end_log_pos 12061 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12061
+#010909 #:#:# server id 1 end_log_pos 12129 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12129
+# at 12170
+#010909 #:#:# server id 1 end_log_pos 12170 Table_map: `test`.`t1` mapped to number 37
+#010909 #:#:# server id 1 end_log_pos 12208 Delete_rows: table id 37 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
+# at 12208
+#010909 #:#:# server id 1 end_log_pos 12277 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12277
+#010909 #:#:# server id 1 end_log_pos 12353 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12353
+#010909 #:#:# server id 1 end_log_pos 12443 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c19 FLOAT)
+/*!*/;
+# at 12443
+#010909 #:#:# server id 1 end_log_pos 12511 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12511
+# at 12553
+#010909 #:#:# server id 1 end_log_pos 12553 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12587 Write_rows: table id 38 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12587
+#010909 #:#:# server id 1 end_log_pos 12656 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12656
+#010909 #:#:# server id 1 end_log_pos 12724 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 12724
+# at 12766
+#010909 #:#:# server id 1 end_log_pos 12766 Table_map: `test`.`t1` mapped to number 38
+#010909 #:#:# server id 1 end_log_pos 12800 Delete_rows: table id 38 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123.223 /* FLOAT meta=4 nullable=1 is_null=0 */
+# at 12800
+#010909 #:#:# server id 1 end_log_pos 12869 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 12869
+#010909 #:#:# server id 1 end_log_pos 12945 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 12945
+#010909 #:#:# server id 1 end_log_pos 13036 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c22 DOUBLE)
+/*!*/;
+# at 13036
+#010909 #:#:# server id 1 end_log_pos 13104 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13104
+# at 13146
+#010909 #:#:# server id 1 end_log_pos 13146 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13184 Write_rows: table id 39 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13184
+#010909 #:#:# server id 1 end_log_pos 13253 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13253
+#010909 #:#:# server id 1 end_log_pos 13321 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13321
+# at 13363
+#010909 #:#:# server id 1 end_log_pos 13363 Table_map: `test`.`t1` mapped to number 39
+#010909 #:#:# server id 1 end_log_pos 13401 Delete_rows: table id 39 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=123434.22344544999942 /* DOUBLE meta=8 nullable=1 is_null=0 */
+# at 13401
+#010909 #:#:# server id 1 end_log_pos 13470 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13470
+#010909 #:#:# server id 1 end_log_pos 13546 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 13546
+#010909 #:#:# server id 1 end_log_pos 13644 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c25 DECIMAL(10,5))
+/*!*/;
+# at 13644
+#010909 #:#:# server id 1 end_log_pos 13712 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13712
+# at 13755
+#010909 #:#:# server id 1 end_log_pos 13755 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 13791 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 13791
+#010909 #:#:# server id 1 end_log_pos 13860 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 13860
+#010909 #:#:# server id 1 end_log_pos 13928 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 13928
+# at 13971
+#010909 #:#:# server id 1 end_log_pos 13971 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14007 Write_rows: table id 40 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=-000000543.210000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14007
+#010909 #:#:# server id 1 end_log_pos 14076 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14076
+#010909 #:#:# server id 1 end_log_pos 14144 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14144
+# at 14187
+#010909 #:#:# server id 1 end_log_pos 14187 Table_map: `test`.`t1` mapped to number 40
+#010909 #:#:# server id 1 end_log_pos 14223 Delete_rows: table id 40 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=000000124.450000000 /* DECIMAL(10,5) meta=2565 nullable=1 is_null=0 */
+# at 14223
+#010909 #:#:# server id 1 end_log_pos 14292 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14292
+#010909 #:#:# server id 1 end_log_pos 14368 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14368
+#010909 #:#:# server id 1 end_log_pos 14457 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c28 DATE)
+/*!*/;
+# at 14457
+#010909 #:#:# server id 1 end_log_pos 14525 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14525
+# at 14566
+#010909 #:#:# server id 1 end_log_pos 14566 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14599 Write_rows: table id 41 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14599
+#010909 #:#:# server id 1 end_log_pos 14668 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14668
+#010909 #:#:# server id 1 end_log_pos 14736 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 14736
+# at 14777
+#010909 #:#:# server id 1 end_log_pos 14777 Table_map: `test`.`t1` mapped to number 41
+#010909 #:#:# server id 1 end_log_pos 14810 Delete_rows: table id 41 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* DATE meta=0 nullable=1 is_null=0 */
+# at 14810
+#010909 #:#:# server id 1 end_log_pos 14879 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 14879
+#010909 #:#:# server id 1 end_log_pos 14955 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 14955
+#010909 #:#:# server id 1 end_log_pos 15048 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c29 DATETIME)
+/*!*/;
+# at 15048
+#010909 #:#:# server id 1 end_log_pos 15116 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15116
+# at 15157
+#010909 #:#:# server id 1 end_log_pos 15157 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15195 Write_rows: table id 42 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15195
+#010909 #:#:# server id 1 end_log_pos 15264 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15264
+#010909 #:#:# server id 1 end_log_pos 15332 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15332
+# at 15373
+#010909 #:#:# server id 1 end_log_pos 15373 Table_map: `test`.`t1` mapped to number 42
+#010909 #:#:# server id 1 end_log_pos 15411 Delete_rows: table id 42 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001-02-03 #:#:# /* DATETIME meta=0 nullable=1 is_null=0 */
+# at 15411
+#010909 #:#:# server id 1 end_log_pos 15480 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15480
+#010909 #:#:# server id 1 end_log_pos 15556 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 15556
+#010909 #:#:# server id 1 end_log_pos 15650 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c30 TIMESTAMP)
+/*!*/;
+# at 15650
+#010909 #:#:# server id 1 end_log_pos 15726 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+SET @@session.time_zone='SYSTEM'/*!*/;
+BEGIN
+/*!*/;
+# at 15726
+# at 15767
+#010909 #:#:# server id 1 end_log_pos 15767 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 15801 Write_rows: table id 43 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 15801
+#010909 #:#:# server id 1 end_log_pos 15878 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 15878
+#010909 #:#:# server id 1 end_log_pos 15954 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 15954
+# at 15995
+#010909 #:#:# server id 1 end_log_pos 15995 Table_map: `test`.`t1` mapped to number 43
+#010909 #:#:# server id 1 end_log_pos 16029 Delete_rows: table id 43 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=981184830 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
+# at 16029
+#010909 #:#:# server id 1 end_log_pos 16106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16106
+#010909 #:#:# server id 1 end_log_pos 16182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16182
+#010909 #:#:# server id 1 end_log_pos 16271 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c31 TIME)
+/*!*/;
+# at 16271
+#010909 #:#:# server id 1 end_log_pos 16339 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16339
+# at 16380
+#010909 #:#:# server id 1 end_log_pos 16380 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16413 Write_rows: table id 44 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16413
+#010909 #:#:# server id 1 end_log_pos 16482 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16482
+#010909 #:#:# server id 1 end_log_pos 16550 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16550
+# at 16591
+#010909 #:#:# server id 1 end_log_pos 16591 Table_map: `test`.`t1` mapped to number 44
+#010909 #:#:# server id 1 end_log_pos 16624 Delete_rows: table id 44 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='#:#:#' /* TIME meta=0 nullable=1 is_null=0 */
+# at 16624
+#010909 #:#:# server id 1 end_log_pos 16693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 16693
+#010909 #:#:# server id 1 end_log_pos 16769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 16769
+#010909 #:#:# server id 1 end_log_pos 16858 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c32 YEAR)
+/*!*/;
+# at 16858
+#010909 #:#:# server id 1 end_log_pos 16926 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 16926
+# at 16967
+#010909 #:#:# server id 1 end_log_pos 16967 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 16998 Write_rows: table id 45 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 16998
+#010909 #:#:# server id 1 end_log_pos 17067 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17067
+#010909 #:#:# server id 1 end_log_pos 17135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17135
+# at 17176
+#010909 #:#:# server id 1 end_log_pos 17176 Table_map: `test`.`t1` mapped to number 45
+#010909 #:#:# server id 1 end_log_pos 17207 Delete_rows: table id 45 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1=2001 /* YEAR meta=0 nullable=1 is_null=0 */
+# at 17207
+#010909 #:#:# server id 1 end_log_pos 17276 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17276
+#010909 #:#:# server id 1 end_log_pos 17352 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17352
+#010909 #:#:# server id 1 end_log_pos 17441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c33 CHAR)
+/*!*/;
+# at 17441
+#010909 #:#:# server id 1 end_log_pos 17509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17509
+# at 17552
+#010909 #:#:# server id 1 end_log_pos 17552 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17584 Write_rows: table id 46 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17584
+#010909 #:#:# server id 1 end_log_pos 17653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17653
+#010909 #:#:# server id 1 end_log_pos 17721 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 17721
+# at 17764
+#010909 #:#:# server id 1 end_log_pos 17764 Table_map: `test`.`t1` mapped to number 46
+#010909 #:#:# server id 1 end_log_pos 17796 Delete_rows: table id 46 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 17796
+#010909 #:#:# server id 1 end_log_pos 17865 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 17865
+#010909 #:#:# server id 1 end_log_pos 17941 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 17941
+#010909 #:#:# server id 1 end_log_pos 18033 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c34 CHAR(0))
+/*!*/;
+# at 18033
+#010909 #:#:# server id 1 end_log_pos 18101 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18101
+# at 18144
+#010909 #:#:# server id 1 end_log_pos 18144 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18175 Write_rows: table id 47 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18175
+#010909 #:#:# server id 1 end_log_pos 18244 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18244
+#010909 #:#:# server id 1 end_log_pos 18312 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18312
+# at 18355
+#010909 #:#:# server id 1 end_log_pos 18355 Table_map: `test`.`t1` mapped to number 47
+#010909 #:#:# server id 1 end_log_pos 18386 Delete_rows: table id 47 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 18386
+#010909 #:#:# server id 1 end_log_pos 18455 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18455
+#010909 #:#:# server id 1 end_log_pos 18531 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 18531
+#010909 #:#:# server id 1 end_log_pos 18623 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c35 CHAR(1))
+/*!*/;
+# at 18623
+#010909 #:#:# server id 1 end_log_pos 18691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18691
+# at 18734
+#010909 #:#:# server id 1 end_log_pos 18734 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18766 Write_rows: table id 48 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18766
+#010909 #:#:# server id 1 end_log_pos 18835 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 18835
+#010909 #:#:# server id 1 end_log_pos 18903 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 18903
+# at 18946
+#010909 #:#:# server id 1 end_log_pos 18946 Table_map: `test`.`t1` mapped to number 48
+#010909 #:#:# server id 1 end_log_pos 18978 Delete_rows: table id 48 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='b' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 18978
+#010909 #:#:# server id 1 end_log_pos 19047 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19047
+#010909 #:#:# server id 1 end_log_pos 19123 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 19123
+#010909 #:#:# server id 1 end_log_pos 19217 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c36 CHAR(255))
+/*!*/;
+# at 19217
+#010909 #:#:# server id 1 end_log_pos 19285 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19285
+# at 19328
+#010909 #:#:# server id 1 end_log_pos 19328 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 19614 Write_rows: table id 49 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 19614
+#010909 #:#:# server id 1 end_log_pos 19683 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 19683
+#010909 #:#:# server id 1 end_log_pos 19751 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 19751
+# at 19794
+#010909 #:#:# server id 1 end_log_pos 19794 Table_map: `test`.`t1` mapped to number 49
+#010909 #:#:# server id 1 end_log_pos 20080 Delete_rows: table id 49 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 20080
+#010909 #:#:# server id 1 end_log_pos 20149 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20149
+#010909 #:#:# server id 1 end_log_pos 20225 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20225
+#010909 #:#:# server id 1 end_log_pos 20323 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c37 NATIONAL CHAR)
+/*!*/;
+# at 20323
+#010909 #:#:# server id 1 end_log_pos 20391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20391
+# at 20434
+#010909 #:#:# server id 1 end_log_pos 20434 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20466 Write_rows: table id 50 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20466
+#010909 #:#:# server id 1 end_log_pos 20535 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20535
+#010909 #:#:# server id 1 end_log_pos 20603 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20603
+# at 20646
+#010909 #:#:# server id 1 end_log_pos 20646 Table_map: `test`.`t1` mapped to number 50
+#010909 #:#:# server id 1 end_log_pos 20678 Delete_rows: table id 50 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 20678
+#010909 #:#:# server id 1 end_log_pos 20747 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 20747
+#010909 #:#:# server id 1 end_log_pos 20823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 20823
+#010909 #:#:# server id 1 end_log_pos 20924 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c38 NATIONAL CHAR(0))
+/*!*/;
+# at 20924
+#010909 #:#:# server id 1 end_log_pos 20992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 20992
+# at 21035
+#010909 #:#:# server id 1 end_log_pos 21035 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21066 Write_rows: table id 51 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21066
+#010909 #:#:# server id 1 end_log_pos 21135 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21135
+#010909 #:#:# server id 1 end_log_pos 21203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21203
+# at 21246
+#010909 #:#:# server id 1 end_log_pos 21246 Table_map: `test`.`t1` mapped to number 51
+#010909 #:#:# server id 1 end_log_pos 21277 Delete_rows: table id 51 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 21277
+#010909 #:#:# server id 1 end_log_pos 21346 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21346
+#010909 #:#:# server id 1 end_log_pos 21422 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 21422
+#010909 #:#:# server id 1 end_log_pos 21523 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c39 NATIONAL CHAR(1))
+/*!*/;
+# at 21523
+#010909 #:#:# server id 1 end_log_pos 21591 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21591
+# at 21634
+#010909 #:#:# server id 1 end_log_pos 21634 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21666 Write_rows: table id 52 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21666
+#010909 #:#:# server id 1 end_log_pos 21735 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21735
+#010909 #:#:# server id 1 end_log_pos 21803 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 21803
+# at 21846
+#010909 #:#:# server id 1 end_log_pos 21846 Table_map: `test`.`t1` mapped to number 52
+#010909 #:#:# server id 1 end_log_pos 21878 Delete_rows: table id 52 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(3) meta=65027 nullable=1 is_null=0 */
+# at 21878
+#010909 #:#:# server id 1 end_log_pos 21947 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 21947
+#010909 #:#:# server id 1 end_log_pos 22023 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 22023
+#010909 #:#:# server id 1 end_log_pos 22126 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c40 NATIONAL CHAR(255))
+/*!*/;
+# at 22126
+#010909 #:#:# server id 1 end_log_pos 22194 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22194
+# at 22237
+#010909 #:#:# server id 1 end_log_pos 22237 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 22524 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 22524
+#010909 #:#:# server id 1 end_log_pos 22593 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 22593
+#010909 #:#:# server id 1 end_log_pos 22661 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 22661
+# at 22704
+#010909 #:#:# server id 1 end_log_pos 22704 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 23246 Write_rows: table id 53 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 23246
+#010909 #:#:# server id 1 end_log_pos 23315 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 23315
+#010909 #:#:# server id 1 end_log_pos 23383 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 23383
+# at 23426
+#010909 #:#:# server id 1 end_log_pos 23426 Table_map: `test`.`t1` mapped to number 53
+#010909 #:#:# server id 1 end_log_pos 24226 Delete_rows: table id 53 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß' /* STRING(765) meta=57085 nullable=1 is_null=0 */
+# at 24226
+#010909 #:#:# server id 1 end_log_pos 24295 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24295
+#010909 #:#:# server id 1 end_log_pos 24371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24371
+#010909 #:#:# server id 1 end_log_pos 24479 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c41 CHAR CHARACTER SET UCS2)
+/*!*/;
+# at 24479
+#010909 #:#:# server id 1 end_log_pos 24547 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24547
+# at 24590
+#010909 #:#:# server id 1 end_log_pos 24590 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24623 Write_rows: table id 54 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24623
+#010909 #:#:# server id 1 end_log_pos 24692 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24692
+#010909 #:#:# server id 1 end_log_pos 24760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 24760
+# at 24803
+#010909 #:#:# server id 1 end_log_pos 24803 Table_map: `test`.`t1` mapped to number 54
+#010909 #:#:# server id 1 end_log_pos 24836 Delete_rows: table id 54 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 24836
+#010909 #:#:# server id 1 end_log_pos 24905 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 24905
+#010909 #:#:# server id 1 end_log_pos 24981 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 24981
+#010909 #:#:# server id 1 end_log_pos 25092 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c42 CHAR(0) CHARACTER SET UCS2)
+/*!*/;
+# at 25092
+#010909 #:#:# server id 1 end_log_pos 25160 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25160
+# at 25203
+#010909 #:#:# server id 1 end_log_pos 25203 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25234 Write_rows: table id 55 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25234
+#010909 #:#:# server id 1 end_log_pos 25303 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25303
+#010909 #:#:# server id 1 end_log_pos 25371 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25371
+# at 25414
+#010909 #:#:# server id 1 end_log_pos 25414 Table_map: `test`.`t1` mapped to number 55
+#010909 #:#:# server id 1 end_log_pos 25445 Delete_rows: table id 55 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 25445
+#010909 #:#:# server id 1 end_log_pos 25514 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25514
+#010909 #:#:# server id 1 end_log_pos 25590 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 25590
+#010909 #:#:# server id 1 end_log_pos 25701 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c43 CHAR(1) CHARACTER SET UCS2)
+/*!*/;
+# at 25701
+#010909 #:#:# server id 1 end_log_pos 25769 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25769
+# at 25812
+#010909 #:#:# server id 1 end_log_pos 25812 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 25845 Write_rows: table id 56 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 25845
+#010909 #:#:# server id 1 end_log_pos 25914 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 25914
+#010909 #:#:# server id 1 end_log_pos 25982 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 25982
+# at 26025
+#010909 #:#:# server id 1 end_log_pos 26025 Table_map: `test`.`t1` mapped to number 56
+#010909 #:#:# server id 1 end_log_pos 26058 Delete_rows: table id 56 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* STRING(2) meta=65026 nullable=1 is_null=0 */
+# at 26058
+#010909 #:#:# server id 1 end_log_pos 26127 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 26127
+#010909 #:#:# server id 1 end_log_pos 26203 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 26203
+#010909 #:#:# server id 1 end_log_pos 26316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c44 CHAR(255) CHARACTER SET UCS2)
+/*!*/;
+# at 26316
+#010909 #:#:# server id 1 end_log_pos 26384 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 26384
+# at 26427
+#010909 #:#:# server id 1 end_log_pos 26427 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 26969 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 26969
+#010909 #:#:# server id 1 end_log_pos 27038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27038
+#010909 #:#:# server id 1 end_log_pos 27106 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27106
+# at 27149
+#010909 #:#:# server id 1 end_log_pos 27149 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 27691 Write_rows: table id 57 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x0000�x00�x00�x00�x00�x00�x00�x00�x00�x00/* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 27691
+#010909 #:#:# server id 1 end_log_pos 27760 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 27760
+#010909 #:#:# server id 1 end_log_pos 27828 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 27828
+# at 27871
+# at 28413
+#010909 #:#:# server id 1 end_log_pos 27871 Table_map: `test`.`t1` mapped to number 57
+#010909 #:#:# server id 1 end_log_pos 28413 Delete_rows: table id 57
+#010909 #:#:# server id 1 end_log_pos 28955 Delete_rows: table id 57 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(510) meta=61182 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00�x00� /* STRING(510) meta=61182 nullable=1 is_null=0 */
+# at 28955
+#010909 #:#:# server id 1 end_log_pos 29024 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29024
+#010909 #:#:# server id 1 end_log_pos 29100 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29100
+#010909 #:#:# server id 1 end_log_pos 29195 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c45 VARCHAR(0))
+/*!*/;
+# at 29195
+#010909 #:#:# server id 1 end_log_pos 29263 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29263
+# at 29306
+#010909 #:#:# server id 1 end_log_pos 29306 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29337 Write_rows: table id 58 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29337
+#010909 #:#:# server id 1 end_log_pos 29406 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29406
+#010909 #:#:# server id 1 end_log_pos 29474 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29474
+# at 29517
+#010909 #:#:# server id 1 end_log_pos 29517 Table_map: `test`.`t1` mapped to number 58
+#010909 #:#:# server id 1 end_log_pos 29548 Delete_rows: table id 58 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 29548
+#010909 #:#:# server id 1 end_log_pos 29617 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 29617
+#010909 #:#:# server id 1 end_log_pos 29693 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 29693
+#010909 #:#:# server id 1 end_log_pos 29788 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c46 VARCHAR(1))
+/*!*/;
+# at 29788
+#010909 #:#:# server id 1 end_log_pos 29856 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 29856
+# at 29899
+#010909 #:#:# server id 1 end_log_pos 29899 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 29931 Write_rows: table id 59 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 29931
+#010909 #:#:# server id 1 end_log_pos 30000 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30000
+#010909 #:#:# server id 1 end_log_pos 30068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30068
+# at 30111
+#010909 #:#:# server id 1 end_log_pos 30111 Table_map: `test`.`t1` mapped to number 59
+#010909 #:#:# server id 1 end_log_pos 30143 Delete_rows: table id 59 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 30143
+#010909 #:#:# server id 1 end_log_pos 30212 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30212
+#010909 #:#:# server id 1 end_log_pos 30288 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 30288
+#010909 #:#:# server id 1 end_log_pos 30385 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c47 VARCHAR(255))
+/*!*/;
+# at 30385
+#010909 #:#:# server id 1 end_log_pos 30453 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30453
+# at 30496
+#010909 #:#:# server id 1 end_log_pos 30496 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 30782 Write_rows: table id 60 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 30782
+#010909 #:#:# server id 1 end_log_pos 30851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 30851
+#010909 #:#:# server id 1 end_log_pos 30919 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 30919
+# at 30962
+#010909 #:#:# server id 1 end_log_pos 30962 Table_map: `test`.`t1` mapped to number 60
+#010909 #:#:# server id 1 end_log_pos 31248 Delete_rows: table id 60 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 31248
+#010909 #:#:# server id 1 end_log_pos 31317 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31317
+#010909 #:#:# server id 1 end_log_pos 31393 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 31393
+#010909 #:#:# server id 1 end_log_pos 31490 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c48 VARCHAR(261))
+/*!*/;
+# at 31490
+#010909 #:#:# server id 1 end_log_pos 31558 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 31558
+# at 31601
+#010909 #:#:# server id 1 end_log_pos 31601 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 31894 Write_rows: table id 61 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 31894
+#010909 #:#:# server id 1 end_log_pos 31963 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 31963
+#010909 #:#:# server id 1 end_log_pos 32031 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32031
+# at 32074
+#010909 #:#:# server id 1 end_log_pos 32074 Table_map: `test`.`t1` mapped to number 61
+#010909 #:#:# server id 1 end_log_pos 32367 Delete_rows: table id 61 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
+# at 32367
+#010909 #:#:# server id 1 end_log_pos 32436 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32436
+#010909 #:#:# server id 1 end_log_pos 32512 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 32512
+#010909 #:#:# server id 1 end_log_pos 32616 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c49 NATIONAL VARCHAR(0))
+/*!*/;
+# at 32616
+#010909 #:#:# server id 1 end_log_pos 32684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32684
+# at 32727
+#010909 #:#:# server id 1 end_log_pos 32727 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32758 Write_rows: table id 62 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32758
+#010909 #:#:# server id 1 end_log_pos 32827 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 32827
+#010909 #:#:# server id 1 end_log_pos 32895 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 32895
+# at 32938
+#010909 #:#:# server id 1 end_log_pos 32938 Table_map: `test`.`t1` mapped to number 62
+#010909 #:#:# server id 1 end_log_pos 32969 Delete_rows: table id 62 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 32969
+#010909 #:#:# server id 1 end_log_pos 33038 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33038
+#010909 #:#:# server id 1 end_log_pos 33114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33114
+#010909 #:#:# server id 1 end_log_pos 33218 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c50 NATIONAL VARCHAR(1))
+/*!*/;
+# at 33218
+#010909 #:#:# server id 1 end_log_pos 33286 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33286
+# at 33329
+#010909 #:#:# server id 1 end_log_pos 33329 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33361 Write_rows: table id 63 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33361
+#010909 #:#:# server id 1 end_log_pos 33430 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33430
+#010909 #:#:# server id 1 end_log_pos 33498 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33498
+# at 33541
+#010909 #:#:# server id 1 end_log_pos 33541 Table_map: `test`.`t1` mapped to number 63
+#010909 #:#:# server id 1 end_log_pos 33573 Delete_rows: table id 63 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
+# at 33573
+#010909 #:#:# server id 1 end_log_pos 33642 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 33642
+#010909 #:#:# server id 1 end_log_pos 33718 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 33718
+#010909 #:#:# server id 1 end_log_pos 33824 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c51 NATIONAL VARCHAR(255))
+/*!*/;
+# at 33824
+#010909 #:#:# server id 1 end_log_pos 33892 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 33892
+# at 33935
+#010909 #:#:# server id 1 end_log_pos 33935 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34222 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+# at 34222
+#010909 #:#:# server id 1 end_log_pos 34291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 34291
+#010909 #:#:# server id 1 end_log_pos 34359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 34359
+# at 34402
+#010909 #:#:# server id 1 end_log_pos 34402 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 34944 Write_rows: table id 64 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßlable=1 is_null=0 */
+# at 34944
+#010909 #:#:# server id 1 end_log_pos 35013 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35013
+#010909 #:#:# server id 1 end_log_pos 35081 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 35081
+# at 35124
+#010909 #:#:# server id 1 end_log_pos 35124 Table_map: `test`.`t1` mapped to number 64
+#010909 #:#:# server id 1 end_log_pos 35924 Delete_rows: table id 64 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß_null=0 */
+# at 35924
+#010909 #:#:# server id 1 end_log_pos 35993 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 35993
+#010909 #:#:# server id 1 end_log_pos 36069 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 36069
+#010909 #:#:# server id 1 end_log_pos 36175 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c52 NATIONAL VARCHAR(261))
+/*!*/;
+# at 36175
+#010909 #:#:# server id 1 end_log_pos 36243 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36243
+# at 36286
+#010909 #:#:# server id 1 end_log_pos 36286 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 36579 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+# at 36579
+#010909 #:#:# server id 1 end_log_pos 36648 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 36648
+#010909 #:#:# server id 1 end_log_pos 36716 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 36716
+# at 36759
+#010909 #:#:# server id 1 end_log_pos 36759 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 37313 Write_rows: table id 65 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß_null=0 */
+# at 37313
+#010909 #:#:# server id 1 end_log_pos 37382 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 37382
+#010909 #:#:# server id 1 end_log_pos 37450 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 37450
+# at 37493
+#010909 #:#:# server id 1 end_log_pos 37493 Table_map: `test`.`t1` mapped to number 65
+#010909 #:#:# server id 1 end_log_pos 38311 Delete_rows: table id 65 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
+### DELETE FROM test.t1
+### WHERE
+### @1='ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßble=1 is_null=0 */
+# at 38311
+#010909 #:#:# server id 1 end_log_pos 38380 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38380
+#010909 #:#:# server id 1 end_log_pos 38456 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 38456
+#010909 #:#:# server id 1 end_log_pos 38570 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c53 VARCHAR(0) CHARACTER SET ucs2)
+/*!*/;
+# at 38570
+#010909 #:#:# server id 1 end_log_pos 38638 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38638
+# at 38681
+#010909 #:#:# server id 1 end_log_pos 38681 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38712 Write_rows: table id 66 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38712
+#010909 #:#:# server id 1 end_log_pos 38781 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38781
+#010909 #:#:# server id 1 end_log_pos 38849 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 38849
+# at 38892
+#010909 #:#:# server id 1 end_log_pos 38892 Table_map: `test`.`t1` mapped to number 66
+#010909 #:#:# server id 1 end_log_pos 38923 Delete_rows: table id 66 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 38923
+#010909 #:#:# server id 1 end_log_pos 38992 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 38992
+#010909 #:#:# server id 1 end_log_pos 39068 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39068
+#010909 #:#:# server id 1 end_log_pos 39182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c54 VARCHAR(1) CHARACTER SET ucs2)
+/*!*/;
+# at 39182
+#010909 #:#:# server id 1 end_log_pos 39250 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39250
+# at 39293
+#010909 #:#:# server id 1 end_log_pos 39293 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39326 Write_rows: table id 67 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39326
+#010909 #:#:# server id 1 end_log_pos 39395 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39395
+#010909 #:#:# server id 1 end_log_pos 39463 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39463
+# at 39506
+#010909 #:#:# server id 1 end_log_pos 39506 Table_map: `test`.`t1` mapped to number 67
+#010909 #:#:# server id 1 end_log_pos 39539 Delete_rows: table id 67 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
+# at 39539
+#010909 #:#:# server id 1 end_log_pos 39608 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 39608
+#010909 #:#:# server id 1 end_log_pos 39684 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 39684
+#010909 #:#:# server id 1 end_log_pos 39800 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c55 VARCHAR(255) CHARACTER SET ucs2)
+/*!*/;
+# at 39800
+#010909 #:#:# server id 1 end_log_pos 39868 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 39868
+# at 39911
+#010909 #:#:# server id 1 end_log_pos 39911 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 40451 Write_rows: table id 68 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 40451
+#010909 #:#:# server id 1 end_log_pos 40520 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 40520
+#010909 #:#:# server id 1 end_log_pos 40588 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 40588
+# at 40631
+#010909 #:#:# server id 1 end_log_pos 40631 Table_map: `test`.`t1` mapped to number 68
+#010909 #:#:# server id 1 end_log_pos 41171 Delete_rows: table id 68 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
+# at 41171
+#010909 #:#:# server id 1 end_log_pos 41240 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 41240
+#010909 #:#:# server id 1 end_log_pos 41316 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 41316
+#010909 #:#:# server id 1 end_log_pos 41432 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c56 VARCHAR(261) CHARACTER SET ucs2)
+/*!*/;
+# at 41432
+#010909 #:#:# server id 1 end_log_pos 41500 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 41500
+# at 41543
+#010909 #:#:# server id 1 end_log_pos 41543 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42095 Write_rows: table id 69 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42095
+#010909 #:#:# server id 1 end_log_pos 42164 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42164
+#010909 #:#:# server id 1 end_log_pos 42232 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 42232
+# at 42275
+#010909 #:#:# server id 1 end_log_pos 42275 Table_map: `test`.`t1` mapped to number 69
+#010909 #:#:# server id 1 end_log_pos 42827 Delete_rows: table id 69 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b\x00a\x00b' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
+# at 42827
+#010909 #:#:# server id 1 end_log_pos 42896 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 42896
+#010909 #:#:# server id 1 end_log_pos 42972 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 42972
+#010909 #:#:# server id 1 end_log_pos 43063 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c57 BINARY)
+/*!*/;
+# at 43063
+#010909 #:#:# server id 1 end_log_pos 43131 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43131
+# at 43174
+#010909 #:#:# server id 1 end_log_pos 43174 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43205 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43205
+#010909 #:#:# server id 1 end_log_pos 43274 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43274
+#010909 #:#:# server id 1 end_log_pos 43342 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43342
+# at 43385
+#010909 #:#:# server id 1 end_log_pos 43385 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43417 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43417
+#010909 #:#:# server id 1 end_log_pos 43486 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43486
+#010909 #:#:# server id 1 end_log_pos 43554 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43554
+# at 43597
+#010909 #:#:# server id 1 end_log_pos 43597 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43629 Write_rows: table id 70 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43629
+#010909 #:#:# server id 1 end_log_pos 43698 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43698
+#010909 #:#:# server id 1 end_log_pos 43766 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 43766
+# at 43809
+#010909 #:#:# server id 1 end_log_pos 43809 Table_map: `test`.`t1` mapped to number 70
+#010909 #:#:# server id 1 end_log_pos 43841 Delete_rows: table id 70 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 43841
+#010909 #:#:# server id 1 end_log_pos 43910 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 43910
+#010909 #:#:# server id 1 end_log_pos 43986 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 43986
+#010909 #:#:# server id 1 end_log_pos 44080 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c58 BINARY(0))
+/*!*/;
+# at 44080
+#010909 #:#:# server id 1 end_log_pos 44148 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44148
+# at 44191
+#010909 #:#:# server id 1 end_log_pos 44191 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44222 Write_rows: table id 71 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44222
+#010909 #:#:# server id 1 end_log_pos 44291 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44291
+#010909 #:#:# server id 1 end_log_pos 44359 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44359
+# at 44402
+#010909 #:#:# server id 1 end_log_pos 44402 Table_map: `test`.`t1` mapped to number 71
+#010909 #:#:# server id 1 end_log_pos 44433 Delete_rows: table id 71 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
+# at 44433
+#010909 #:#:# server id 1 end_log_pos 44502 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44502
+#010909 #:#:# server id 1 end_log_pos 44578 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 44578
+#010909 #:#:# server id 1 end_log_pos 44672 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c59 BINARY(1))
+/*!*/;
+# at 44672
+#010909 #:#:# server id 1 end_log_pos 44740 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44740
+# at 44783
+#010909 #:#:# server id 1 end_log_pos 44783 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 44814 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 44814
+#010909 #:#:# server id 1 end_log_pos 44883 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 44883
+#010909 #:#:# server id 1 end_log_pos 44951 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 44951
+# at 44994
+#010909 #:#:# server id 1 end_log_pos 44994 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45026 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45026
+#010909 #:#:# server id 1 end_log_pos 45095 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45095
+#010909 #:#:# server id 1 end_log_pos 45163 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45163
+# at 45206
+#010909 #:#:# server id 1 end_log_pos 45206 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45238 Write_rows: table id 72 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45238
+#010909 #:#:# server id 1 end_log_pos 45307 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45307
+#010909 #:#:# server id 1 end_log_pos 45375 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45375
+# at 45418
+#010909 #:#:# server id 1 end_log_pos 45418 Table_map: `test`.`t1` mapped to number 72
+#010909 #:#:# server id 1 end_log_pos 45450 Delete_rows: table id 72 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
+# at 45450
+#010909 #:#:# server id 1 end_log_pos 45519 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45519
+#010909 #:#:# server id 1 end_log_pos 45595 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 45595
+#010909 #:#:# server id 1 end_log_pos 45691 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c60 BINARY(255))
+/*!*/;
+# at 45691
+#010909 #:#:# server id 1 end_log_pos 45759 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45759
+# at 45802
+#010909 #:#:# server id 1 end_log_pos 45802 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 45833 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 45833
+#010909 #:#:# server id 1 end_log_pos 45902 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 45902
+#010909 #:#:# server id 1 end_log_pos 45970 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 45970
+# at 46013
+#010909 #:#:# server id 1 end_log_pos 46013 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46045 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46045
+#010909 #:#:# server id 1 end_log_pos 46114 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46114
+#010909 #:#:# server id 1 end_log_pos 46182 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46182
+# at 46225
+#010909 #:#:# server id 1 end_log_pos 46225 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46495 Write_rows: table id 73 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46495
+#010909 #:#:# server id 1 end_log_pos 46564 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46564
+#010909 #:#:# server id 1 end_log_pos 46632 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 46632
+# at 46675
+#010909 #:#:# server id 1 end_log_pos 46675 Table_map: `test`.`t1` mapped to number 73
+#010909 #:#:# server id 1 end_log_pos 46706 Delete_rows: table id 73 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
+# at 46706
+#010909 #:#:# server id 1 end_log_pos 46775 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 46775
+#010909 #:#:# server id 1 end_log_pos 46851 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 46851
+#010909 #:#:# server id 1 end_log_pos 46948 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c61 VARBINARY(0))
+/*!*/;
+# at 46948
+#010909 #:#:# server id 1 end_log_pos 47016 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47016
+# at 47059
+#010909 #:#:# server id 1 end_log_pos 47059 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47090 Write_rows: table id 74 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47090
+#010909 #:#:# server id 1 end_log_pos 47159 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47159
+#010909 #:#:# server id 1 end_log_pos 47227 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47227
+# at 47270
+#010909 #:#:# server id 1 end_log_pos 47270 Table_map: `test`.`t1` mapped to number 74
+#010909 #:#:# server id 1 end_log_pos 47301 Delete_rows: table id 74 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
+# at 47301
+#010909 #:#:# server id 1 end_log_pos 47370 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47370
+#010909 #:#:# server id 1 end_log_pos 47446 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 47446
+#010909 #:#:# server id 1 end_log_pos 47543 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c62 VARBINARY(1))
+/*!*/;
+# at 47543
+#010909 #:#:# server id 1 end_log_pos 47611 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47611
+# at 47654
+#010909 #:#:# server id 1 end_log_pos 47654 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47686 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47686
+#010909 #:#:# server id 1 end_log_pos 47755 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47755
+#010909 #:#:# server id 1 end_log_pos 47823 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 47823
+# at 47866
+#010909 #:#:# server id 1 end_log_pos 47866 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 47898 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 47898
+#010909 #:#:# server id 1 end_log_pos 47967 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 47967
+#010909 #:#:# server id 1 end_log_pos 48035 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48035
+# at 48078
+#010909 #:#:# server id 1 end_log_pos 48078 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48110 Write_rows: table id 75 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48110
+#010909 #:#:# server id 1 end_log_pos 48179 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48179
+#010909 #:#:# server id 1 end_log_pos 48247 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48247
+# at 48290
+#010909 #:#:# server id 1 end_log_pos 48290 Table_map: `test`.`t1` mapped to number 75
+#010909 #:#:# server id 1 end_log_pos 48322 Delete_rows: table id 75 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
+# at 48322
+#010909 #:#:# server id 1 end_log_pos 48391 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48391
+#010909 #:#:# server id 1 end_log_pos 48467 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 48467
+#010909 #:#:# server id 1 end_log_pos 48566 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+CREATE TABLE t1 (c63 VARBINARY(255))
+/*!*/;
+# at 48566
+#010909 #:#:# server id 1 end_log_pos 48634 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48634
+# at 48677
+#010909 #:#:# server id 1 end_log_pos 48677 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48709 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48709
+#010909 #:#:# server id 1 end_log_pos 48778 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48778
+#010909 #:#:# server id 1 end_log_pos 48846 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 48846
+# at 48889
+#010909 #:#:# server id 1 end_log_pos 48889 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 48921 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 48921
+#010909 #:#:# server id 1 end_log_pos 48990 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 48990
+#010909 #:#:# server id 1 end_log_pos 49058 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49058
+# at 49101
+#010909 #:#:# server id 1 end_log_pos 49101 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49372 Write_rows: table id 76 flags: STMT_END_F
+### INSERT INTO test.t1
+### SET
+### @1='a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00a\x00' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49372
+#010909 #:#:# server id 1 end_log_pos 49441 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49441
+#010909 #:#:# server id 1 end_log_pos 49509 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+BEGIN
+/*!*/;
+# at 49509
+# at 49552
+#010909 #:#:# server id 1 end_log_pos 49552 Table_map: `test`.`t1` mapped to number 76
+#010909 #:#:# server id 1 end_log_pos 49584 Delete_rows: table id 76 flags: STMT_END_F
+### DELETE FROM test.t1
+### WHERE
+### @1='\x02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
+# at 49584
+#010909 #:#:# server id 1 end_log_pos 49653 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+COMMIT
+/*!*/;
+# at 49653
+#010909 #:#:# server id 1 end_log_pos 49729 Query thread_id=2 exec_time=# error_code=0
+SET TIMESTAMP=1000000000/*!*/;
+DROP TABLE t1
+/*!*/;
+# at 49729
+#010909 #:#:# server id 1 end_log_pos 49773 Rotate to master-bin.000002 pos: 4
+DELIMITER ;
+# End of log file
+ROLLBACK /* added by mysqlbinlog */;
+/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
+End of 5.1 tests
=== added file 'mysql-test/t/mysqlbinlog_raw_mode.test'
--- a/mysql-test/t/mysqlbinlog_raw_mode.test 1970-01-01 00:00:00 +0000
+++ b/mysql-test/t/mysqlbinlog_raw_mode.test 2009-12-06 08:34:46 +0000
@@ -0,0 +1,77 @@
+--source include/have_binlog_format_mixed_or_statement.inc
+--source include/have_log_bin.inc
+# Tests for new raw mode features in mysqlbinlog, statement mode
+# TODO: Test --wait-for-data
+
+# Delete all the binary logs
+reset master;
+
+# we need this for getting fixed timestamps inside of this test
+set timestamp=1000000000;
+
+--disable_warnings
+drop table if exists t1;
+--enable_warnings
+
+create table t1 (word varchar(20));
+
+# test for load data and load data distributed among the several
+# files (we need to fill up first binlog)
+# ../../ is used because otherwise the full path is in the results file which causes epic fail
+eval load data infile '../../std_data/words.dat' into table t1;
+eval load data infile '../../std_data/words.dat' into table t1;
+eval load data infile '../../std_data/words.dat' into table t1;
+flush logs;
+eval load data infile '../../std_data/words.dat' into table t1;
+eval load data infile '../../std_data/words.dat' into table t1;
+insert into t1 values ("Alas");
+
+# Test --result-dir + --result-file = error
+--error 1
+--exec $MYSQL_BINLOG --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-dir=$MYSQLTEST_VARDIR/tmp/mydir/ --result-file=$MYSQLTEST_VARDIR/tmp/ master-bin.000001
+
+# Test --result-dir without --raw
+--error 1
+--exec $MYSQL_BINLOG --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-dir=$MYSQLTEST_VARDIR/tmp/mydir/ master-bin.000001
+
+# Test reading one file in raw mode
+--exec $MYSQL_BINLOG --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-file=$MYSQLTEST_VARDIR/tmp/ master-bin.000001
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--replace_regex /SQL_LOAD_MB-[0-9a-f]+-[0-9a-f]+/SQL_LOAD_MB-#-#/
+--exec $MYSQL_BINLOG --short-form $MYSQLTEST_VARDIR/tmp/master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/master-bin.000001
+
+# Test reading all files in raw mode
+--exec $MYSQL_BINLOG --raw --read-from-remote-server --to-last-log --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-file=$MYSQLTEST_VARDIR/tmp/ master-bin.000001
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--replace_regex /SQL_LOAD_MB-[0-9a-f]+-[0-9a-f]+/SQL_LOAD_MB-#-#/
+--exec $MYSQL_BINLOG --short-form $MYSQLTEST_VARDIR/tmp/master-bin.000001
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--replace_regex /SQL_LOAD_MB-[0-9a-f]+-[0-9a-f]+/SQL_LOAD_MB-#-#/
+--exec $MYSQL_BINLOG --short-form $MYSQLTEST_VARDIR/tmp/master-bin.000002
+--remove_file $MYSQLTEST_VARDIR/tmp/master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/master-bin.000002
+
+# Test output to different filename
+--exec $MYSQL_BINLOG --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-file=$MYSQLTEST_VARDIR/tmp/server1- master-bin.000001
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--replace_regex /SQL_LOAD_MB-[0-9a-f]+-[0-9a-f]+/SQL_LOAD_MB-#-#/
+--exec $MYSQL_BINLOG --short-form $MYSQLTEST_VARDIR/tmp/server1-master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/server1-master-bin.000001
+
+# Test result-dir setting
+--exec $MYSQL_BINLOG --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-dir=$MYSQLTEST_VARDIR/tmp/mydir/ master-bin.000001
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--replace_regex /SQL_LOAD_MB-[0-9a-f]+-[0-9a-f]+/SQL_LOAD_MB-#-#/
+--exec $MYSQL_BINLOG --short-form $MYSQLTEST_VARDIR/tmp/mydir/master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/mydir/master-bin.000001
+--rmdir $MYSQLTEST_VARDIR/tmp/mydir/
+
+# Test segfault Luís Soares found
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--replace_regex /SQL_LOAD_MB-[0-9a-f]+-[0-9a-f]+/SQL_LOAD_MB-#-#/
+--exec $MYSQL_BINLOG --short-form -r binlog --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT master-bin.000001
+
+DROP TABLE t1;
+
+--echo End of 5.1 tests
=== added file 'mysql-test/t/mysqlbinlog_raw_mode2.test'
--- a/mysql-test/t/mysqlbinlog_raw_mode2.test 1970-01-01 00:00:00 +0000
+++ b/mysql-test/t/mysqlbinlog_raw_mode2.test 2009-12-06 08:34:46 +0000
@@ -0,0 +1,484 @@
+--source include/have_log_bin.inc
+--source include/have_binlog_format_row.inc
+--source include/have_ucs2.inc
+
+# Tests for new raw mode features in mysqlbinlog, row mode
+# TODO: Test --wait-for-data
+
+# Delete all the binary logs
+reset master;
+
+# we need this for getting fixed timestamps inside of this test
+set timestamp=1000000000;
+
+--disable_warnings
+drop table if exists t1;
+--enable_warnings
+CREATE TABLE t1 (c01 BIT);
+INSERT INTO t1 VALUES (0);
+INSERT INTO t1 VALUES (1);
+DROP TABLE t1;
+
+CREATE TABLE t1 (c01 BIT(7));
+INSERT INTO t1 VALUES (1);
+INSERT INTO t1 VALUES (2);
+INSERT INTO t1 VALUES (4);
+INSERT INTO t1 VALUES (8);
+INSERT INTO t1 VALUES (16);
+INSERT INTO t1 VALUES (32);
+INSERT INTO t1 VALUES (64);
+INSERT INTO t1 VALUES (127);
+DELETE FROM t1 WHERE c01=127;
+UPDATE t1 SET c01=15 WHERE c01=16;
+DROP TABLE t1;
+
+CREATE TABLE t1 (a BIT(20), b CHAR(2));
+INSERT INTO t1 VALUES (b'00010010010010001001', 'ab');
+DROP TABLE t1;
+
+CREATE TABLE t1 (c02 BIT(64));
+INSERT INTO t1 VALUES (1);
+INSERT INTO t1 VALUES (2);
+INSERT INTO t1 VALUES (128);
+INSERT INTO t1 VALUES (b'1111111111111111111111111111111111111111111111111111111111111111');
+DROP TABLE t1;
+
+
+CREATE TABLE t1 (c03 TINYINT);
+INSERT INTO t1 VALUES (1),(2),(3);
+INSERT INTO t1 VALUES (-128);
+UPDATE t1 SET c03=2 WHERE c03=1;
+DELETE FROM t1 WHERE c03=-128;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c04 TINYINT UNSIGNED);
+INSERT INTO t1 VALUES (128), (255);
+UPDATE t1 SET c04=2 WHERE c04=1;
+DELETE FROM t1 WHERE c04=255;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c06 BOOL);
+INSERT INTO t1 VALUES (TRUE);
+DELETE FROM t1 WHERE c06=TRUE;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c07 SMALLINT);
+INSERT INTO t1 VALUES (1234);
+DELETE FROM t1 WHERE c07=1234;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c08 SMALLINT UNSIGNED);
+INSERT INTO t1 VALUES (32768), (65535);
+UPDATE t1 SET c08=2 WHERE c08=32768;
+DELETE FROM t1 WHERE c08=65535;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c10 MEDIUMINT);
+INSERT INTO t1 VALUES (12345);
+DELETE FROM t1 WHERE c10=12345;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c11 MEDIUMINT UNSIGNED);
+INSERT INTO t1 VALUES (8388608), (16777215);
+UPDATE t1 SET c11=2 WHERE c11=8388608;
+DELETE FROM t1 WHERE c11=16777215;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c13 INT);
+INSERT INTO t1 VALUES (123456);
+DELETE FROM t1 WHERE c13=123456;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c14 INT UNSIGNED);
+INSERT INTO t1 VALUES (2147483648), (4294967295);
+UPDATE t1 SET c14=2 WHERE c14=2147483648;
+DELETE FROM t1 WHERE c14=4294967295;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c16 BIGINT);
+INSERT INTO t1 VALUES (1234567890);
+DELETE FROM t1 WHERE c16=1234567890;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c17 BIGINT UNSIGNED);
+INSERT INTO t1 VALUES (9223372036854775808), (18446744073709551615);
+UPDATE t1 SET c17=2 WHERE c17=9223372036854775808;
+DELETE FROM t1 WHERE c17=18446744073709551615;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c19 FLOAT);
+INSERT INTO t1 VALUES (123.2234);
+DELETE FROM t1 WHERE c19>123;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c22 DOUBLE);
+INSERT INTO t1 VALUES (123434.22344545);
+DELETE FROM t1 WHERE c22>123434;
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c25 DECIMAL(10,5));
+INSERT INTO t1 VALUES (124.45);
+INSERT INTO t1 VALUES (-543.21);
+DELETE FROM t1 WHERE c25=124.45;
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c28 DATE);
+INSERT INTO t1 VALUES ('2001-02-03');
+DELETE FROM t1 WHERE c28='2001-02-03';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c29 DATETIME);
+INSERT INTO t1 VALUES ('2001-02-03 10:20:30');
+DELETE FROM t1 WHERE c29='2001-02-03 10:20:30';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c30 TIMESTAMP);
+INSERT INTO t1 VALUES ('2001-02-03 10:20:30');
+DELETE FROM t1 WHERE c30='2001-02-03 10:20:30';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c31 TIME);
+INSERT INTO t1 VALUES ('11:22:33');
+DELETE FROM t1 WHERE c31='11:22:33';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c32 YEAR);
+INSERT INTO t1 VALUES ('2001');
+DELETE FROM t1 WHERE c32=2001;
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c33 CHAR);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c33='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c34 CHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c34='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c35 CHAR(1));
+INSERT INTO t1 VALUES ('b');
+DELETE FROM t1 WHERE c35='b';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c36 CHAR(255));
+INSERT INTO t1 VALUES (repeat('c',255));
+DELETE FROM t1 WHERE c36>'c';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c37 NATIONAL CHAR);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c37='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c38 NATIONAL CHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c38='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c39 NATIONAL CHAR(1));
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c39='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c40 NATIONAL CHAR(255));
+INSERT INTO t1 VALUES (repeat('a', 255));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 255));
+DELETE FROM t1 WHERE c40>'a';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c41 CHAR CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c41='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c42 CHAR(0) CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c42='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c43 CHAR(1) CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c43='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c44 CHAR(255) CHARACTER SET UCS2);
+INSERT INTO t1 VALUES (repeat('a', 255));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 255));
+DELETE FROM t1 WHERE c44>'a';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c45 VARCHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c45='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c46 VARCHAR(1));
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c46='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c47 VARCHAR(255));
+INSERT INTO t1 VALUES (repeat('a',255));
+DELETE FROM t1 WHERE c47>'a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c48 VARCHAR(261));
+INSERT INTO t1 VALUES (repeat('a',261));
+DELETE FROM t1 WHERE c48>'a';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c49 NATIONAL VARCHAR(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c49='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c50 NATIONAL VARCHAR(1));
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c50='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c51 NATIONAL VARCHAR(255));
+INSERT INTO t1 VALUES (repeat('a',255));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 255));
+DELETE FROM t1 WHERE c51>'a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c52 NATIONAL VARCHAR(261));
+INSERT INTO t1 VALUES (repeat('a',261));
+INSERT INTO t1 VALUES (repeat(_latin1 0xDF, 261));
+DELETE FROM t1 WHERE c52>'a';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c53 VARCHAR(0) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c53='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c54 VARCHAR(1) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c54='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c55 VARCHAR(255) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES (repeat('ab', 127));
+DELETE FROM t1 WHERE c55>'a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c56 VARCHAR(261) CHARACTER SET ucs2);
+INSERT INTO t1 VALUES (repeat('ab', 130));
+DELETE FROM t1 WHERE c56>'a';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c57 BINARY);
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c57='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c58 BINARY(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c58='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c59 BINARY(1));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c59='a';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c60 BINARY(255));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES (repeat('a\0',120));
+DELETE FROM t1 WHERE c60<0x02;
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c61 VARBINARY(0));
+INSERT INTO t1 VALUES ('');
+DELETE FROM t1 WHERE c61='';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c62 VARBINARY(1));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES ('a');
+DELETE FROM t1 WHERE c62=0x02;
+DROP TABLE t1;
+
+CREATE TABLE t1 (c63 VARBINARY(255));
+INSERT INTO t1 VALUES (0x00);
+INSERT INTO t1 VALUES (0x02);
+INSERT INTO t1 VALUES (repeat('a\0',120));
+DELETE FROM t1 WHERE c63=0x02;
+DROP TABLE t1;
+
+#
+flush logs;
+
+CREATE TABLE t1 (c65 TINYBLOB);
+INSERT INTO t1 VALUES ('tinyblob1');
+DELETE FROM t1 WHERE c65='tinyblob1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c68 BLOB);
+INSERT INTO t1 VALUES ('blob1');
+DELETE FROM t1 WHERE c68='blob1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c71 MEDIUMBLOB);
+INSERT INTO t1 VALUES ('mediumblob1');
+DELETE FROM t1 WHERE c71='mediumblob1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c74 LONGBLOB);
+INSERT INTO t1 VALUES ('longblob1');
+DELETE FROM t1 WHERE c74='longblob1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c66 TINYTEXT);
+INSERT INTO t1 VALUES ('tinytext1');
+DELETE FROM t1 WHERE c66='tinytext1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c69 TEXT);
+INSERT INTO t1 VALUES ('text1');
+DELETE FROM t1 WHERE c69='text1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c72 MEDIUMTEXT);
+INSERT INTO t1 VALUES ('mediumtext1');
+DELETE FROM t1 WHERE c72='mediumtext1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c75 LONGTEXT);
+INSERT INTO t1 VALUES ('longtext1');
+DELETE FROM t1 WHERE c75='longtext1';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c67 TINYTEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('tinytext1');
+DELETE FROM t1 WHERE c67='tinytext1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c70 TEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('text1');
+DELETE FROM t1 WHERE c70='text1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c73 MEDIUMTEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('mediumtext1');
+DELETE FROM t1 WHERE c73='mediumtext1';
+DROP TABLE t1;
+
+CREATE TABLE t1 (c76 LONGTEXT CHARACTER SET UCS2);
+INSERT INTO t1 VALUES ('longtext1');
+DELETE FROM t1 WHERE c76='longtext1';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c77 ENUM('a','b','c'));
+INSERT INTO t1 VALUES ('b');
+DELETE FROM t1 WHERE c77='b';
+DROP TABLE t1;
+
+#
+
+CREATE TABLE t1 (c78 SET('a','b','c','d','e','f'));
+INSERT INTO t1 VALUES ('a,b');
+INSERT INTO t1 VALUES ('a,c');
+INSERT INTO t1 VALUES ('b,c');
+INSERT INTO t1 VALUES ('a,b,c');
+INSERT INTO t1 VALUES ('a,b,c,d');
+INSERT INTO t1 VALUES ('a,b,c,d,e');
+INSERT INTO t1 VALUES ('a,b,c,d,e,f');
+DELETE FROM t1 WHERE c78='a,b';
+DROP TABLE t1;
+
+#
+# Check multi-table update
+#
+CREATE TABLE t1 (a int NOT NULL DEFAULT 0, b int NOT NULL DEFAULT 0);
+CREATE TABLE t2 (a int NOT NULL DEFAULT 0, b int NOT NULL DEFAULT 0);
+INSERT INTO t1 SET a=1;
+INSERT INTO t1 SET b=1;
+INSERT INTO t2 SET a=1;
+INSERT INTO t2 SET b=1;
+UPDATE t1, t2 SET t1.a=10, t2.a=20;
+DROP TABLE t1,t2;
+
+
+# Test --result-dir + --result-file = error
+--error 1
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-dir=$MYSQLTEST_VARDIR/tmp/mydir/ --result-file=$MYSQLTEST_VARDIR/tmp/ master-bin.000001
+
+# Test --result-dir without --raw
+--error 1
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-dir=$MYSQLTEST_VARDIR/tmp/mydir/ master-bin.000001
+
+# Test reading one file in raw mode
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-file=$MYSQLTEST_VARDIR/tmp/ master-bin.000001
+--replace_regex /exec_time\=[0-9]+/exec_time=#/ /[0-9]+:[0-9]+:[0-9]+/#:#:#/
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v $MYSQLTEST_VARDIR/tmp/master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/master-bin.000001
+
+# Test reading all files in raw mode
+--replace_regex /exec_time=[0-9]+/exec_time=#/
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v --raw --read-from-remote-server --to-last-log --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-file=$MYSQLTEST_VARDIR/tmp/ master-bin.000001
+--replace_regex /exec_time=[0-9]+/exec_time=#/ /[0-9]+:[0-9]+:[0-9]+/#:#:#/
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v $MYSQLTEST_VARDIR/tmp/master-bin.000001
+--replace_regex /exec_time\=[0-9]+/exec_time=#/ /[0-9]+:[0-9]+:[0-9]+/#:#:#/
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v $MYSQLTEST_VARDIR/tmp/master-bin.000002
+--remove_file $MYSQLTEST_VARDIR/tmp/master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/master-bin.000002
+
+# Test output to different filename
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-file=$MYSQLTEST_VARDIR/tmp/server1- master-bin.000001
+--replace_regex /exec_time\=[0-9]+/exec_time=#/ /[0-9]+:[0-9]+:[0-9]+/#:#:#/
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v $MYSQLTEST_VARDIR/tmp/server1-master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/server1-master-bin.000001
+
+# Test result-dir setting
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v --raw --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --result-dir=$MYSQLTEST_VARDIR/tmp/mydir/ master-bin.000001
+--replace_regex /exec_time\=[0-9]+/exec_time=#/ /[0-9]+:[0-9]+:[0-9]+/#:#:#/
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v $MYSQLTEST_VARDIR/tmp/mydir/master-bin.000001
+--remove_file $MYSQLTEST_VARDIR/tmp/mydir/master-bin.000001
+--rmdir $MYSQLTEST_VARDIR/tmp/mydir/
+
+# Test segfault Luís Soares found
+--replace_regex /exec_time\=[0-9]+/exec_time=#/ /[0-9]+:[0-9]+:[0-9]+/#:#:#/
+--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
+--exec $MYSQL_BINLOG --base64-output=decode-rows -v -v -r binlog --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT master-bin.000001
+
+--echo End of 5.1 tests
Attachment: [text/bzr-bundle] bzr/andrew.hutchings@sun.com-20091206083446-79g5u28s5vujqa4i.bundle
| Thread |
|---|
| • bzr commit into mysql-5.5-trunk branch (Andrew.Hutchings:2923) WL#4783 | Andrew Hutchings | 6 Dec |