mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
374718ff45
into ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-5.1-marvel client/mysql.cc: Auto merged client/mysqlbinlog.cc: Auto merged BitKeeper/deleted/.del-my_lread.c: Auto merged BitKeeper/deleted/.del-my_lwrite.c: Auto merged BitKeeper/deleted/.del-raid.cc~488f5fa6538394e1: Auto merged BitKeeper/deleted/.del-raid.h~2d2503a66b128ac6: Auto merged client/mysqldump.c: Auto merged extra/perror.c: Auto merged include/my_sys.h: Auto merged libmysql/libmysql.c: Auto merged libmysqld/libmysqld.c: Auto merged mysql-test/r/mysqlbinlog2.result: Auto merged mysql-test/r/sp-security.result: Auto merged mysql-test/r/view_grant.result: Auto merged mysql-test/t/grant.test: Auto merged mysql-test/t/sp-security.test: Auto merged mysql-test/t/sp.test: Auto merged mysql-test/t/sp_trans.test: Auto merged mysql-test/t/view_grant.test: Auto merged mysys/default.c: Auto merged mysys/hash.c: Auto merged mysys/mf_iocache.c: Auto merged mysys/mf_keycache.c: Auto merged mysys/my_alloc.c: Auto merged mysys/my_dup.c: Auto merged mysys/my_getwd.c: Auto merged mysys/my_handler.c: Auto merged mysys/my_lib.c: Auto merged mysys/my_malloc.c: Auto merged mysys/my_pread.c: Auto merged mysys/my_read.c: Auto merged mysys/my_seek.c: Auto merged mysys/my_static.c: Auto merged mysys/safemalloc.c: Auto merged mysys/thr_alarm.c: Auto merged mysys/typelib.c: Auto merged sql/handler.cc: Auto merged sql/item.cc: Auto merged sql/item_cmpfunc.cc: Auto merged sql/item_func.h: Auto merged sql/item_subselect.cc: Auto merged sql/log_event.cc: Auto merged sql/net_serv.cc: Auto merged sql/opt_range.cc: Auto merged sql/slave.cc: Auto merged sql/sp.cc: Auto merged sql/sp_head.cc: Auto merged sql/sql_acl.cc: Auto merged sql/sql_base.cc: Auto merged sql/sql_cache.cc: Auto merged sql/sql_class.cc: Auto merged sql/sql_class.h: Auto merged sql/sql_delete.cc: Auto merged sql/sql_load.cc: Auto merged sql/sql_prepare.cc: Auto merged sql/sql_repl.cc: Auto merged sql/sql_select.cc: Auto merged sql/sql_table.cc: Auto merged sql/sql_view.cc: Auto merged sql/strfunc.cc: Auto merged sql/table.cc: Auto merged sql/tztime.cc: Auto merged sql/unireg.cc: Auto merged sql-common/client.c: Auto merged sql-common/my_time.c: Auto merged storage/archive/ha_archive.cc: Auto merged storage/heap/_check.c: Auto merged storage/heap/hp_delete.c: Auto merged storage/heap/hp_hash.c: Auto merged storage/heap/hp_open.c: Auto merged storage/heap/hp_rkey.c: Auto merged storage/heap/hp_rrnd.c: Auto merged storage/heap/hp_write.c: Auto merged storage/innobase/handler/ha_innodb.cc: Auto merged storage/myisam/mi_close.c: Auto merged storage/myisam/mi_delete.c: Auto merged storage/myisam/mi_dynrec.c: Auto merged storage/myisam/mi_keycache.c: Auto merged storage/myisam/mi_page.c: Auto merged storage/myisam/mi_statrec.c: Auto merged storage/myisam/myisamchk.c: Auto merged storage/myisammrg/myrg_extra.c: Auto merged storage/ndb/src/mgmclient/CommandInterpreter.cpp: Auto merged tests/mysql_client_test.c: Auto merged mysql-test/r/grant.result: Merged from 5.0 mysql-test/r/sp.result: Merged from 5.0 mysql-test/r/sp_trans.result: Merged from 5.0 mysql-test/t/mysqlbinlog2.test: Merged from 5.0 mysys/thr_lock.c: Merged from 5.0 sql/ha_ndbcluster.cc: Merged from 5.0 sql/log.cc: Merged from 5.0 sql/mysql_priv.h: Merged from 5.0 sql/mysqld.cc: Merged from 5.0 sql/set_var.cc: Merged from 5.0 sql/sql_db.cc: Merged from 5.0 sql/sql_insert.cc: Merged from 5.0 sql/sql_parse.cc: Merged from 5.0 sql/sql_show.cc: Merged from 5.0 sql/sql_update.cc: Merged from 5.0
808 lines
28 KiB
Text
808 lines
28 KiB
Text
drop table if exists t1;
|
|
reset master;
|
|
set @a=UNIX_TIMESTAMP("2020-01-21 15:32:22");
|
|
set timestamp=@a;
|
|
create table t1 (a int auto_increment not null primary key, b char(3));
|
|
insert into t1 values(null, "a");
|
|
insert into t1 values(null, "b");
|
|
set timestamp=@a+2;
|
|
insert into t1 values(null, "c");
|
|
set timestamp=@a+4;
|
|
insert into t1 values(null, "d");
|
|
insert into t1 values(null, "e");
|
|
flush logs;
|
|
set timestamp=@a+1;
|
|
insert into t1 values(null, "f");
|
|
|
|
--- Local --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- offset --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start and stop positions ---
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- Local with 2 binlogs on command line --
|
|
flush logs;
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- offset --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- Remote --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- offset --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start and stop positions ---
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- Remote with 2 binlogs on command line --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- offset --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-position --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- start-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
DELIMITER ;
|
|
DELIMITER /*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- stop-datetime --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- to-last-log --
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
create table t1 (a int auto_increment not null primary key, b char(3))/*!*/;
|
|
SET INSERT_ID=1/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "a")/*!*/;
|
|
SET INSERT_ID=2/*!*/;
|
|
SET TIMESTAMP=1579609942/*!*/;
|
|
insert into t1 values(null, "b")/*!*/;
|
|
SET INSERT_ID=3/*!*/;
|
|
SET TIMESTAMP=1579609944/*!*/;
|
|
insert into t1 values(null, "c")/*!*/;
|
|
SET INSERT_ID=4/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "d")/*!*/;
|
|
SET INSERT_ID=5/*!*/;
|
|
SET TIMESTAMP=1579609946/*!*/;
|
|
insert into t1 values(null, "e")/*!*/;
|
|
SET INSERT_ID=6/*!*/;
|
|
SET TIMESTAMP=1579609943/*!*/;
|
|
insert into t1 values(null, "f")/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
|
|
--- end of test --
|
|
drop table t1;
|