# ==== Purpose ==== # # Add [position|datetime] data to mysqlbinlog. To generate a binary log with # a few deterministic,increasing timestamps. # # ==== Implementation ==== # We need to set fixed timestamps in this test. # Use a date in the future to keep a growing timestamp along the # binlog (including the Start_log_event). This test will work # unchanged everywhere, because mysql-test-run has fixed TZ, which it # exports (so mysqlbinlog has same fixed TZ). # # ===== Assumption ======== # As this is a generic file and be used by other test, So we have made an # assumption that a table is already created with defination like # CREATE TABLE t1 (a INT); # # Binlog 1: # One transaction with timestamp 2031-01-01 12:00:00 --let $datetime_1= 2031-01-01 12:00:00 eval SET TIMESTAMP= UNIX_TIMESTAMP("$datetime_1"); INSERT INTO t1 VALUES(1); --let $pos_1= query_get_value(SHOW MASTER STATUS, Position, 1) # One transaction with timestamp 2032-01-01 12:00:00 --let $datetime_2= 2032-01-01 12:00:00 eval SET TIMESTAMP= UNIX_TIMESTAMP("$datetime_2"); INSERT INTO t1 VALUES(2); --let $pos_2= query_get_value(SHOW MASTER STATUS, Position, 1) # One transaction with timestamp 2033-01-01 12:00:00 eval SET TIMESTAMP= UNIX_TIMESTAMP("2033-01-01 12:00:00"); INSERT INTO t1 VALUES(3); --let $file_1= query_get_value(SHOW MASTER STATUS, File, 1) FLUSH LOGS; #Binlog 2: # One transaction with timestamp 2034-01-01 12:00:00 SET TIMESTAMP= UNIX_TIMESTAMP("2034-01-01 12:00:00"); INSERT INTO t1 VALUES(4); --let $pos_3= query_get_value(SHOW MASTER STATUS, Position, 1) # One transaction with timestamp 2035-01-01 12:00:00 --let $datetime_3= 2035-01-01 12:00:00 eval SET TIMESTAMP= UNIX_TIMESTAMP("$datetime_3"); INSERT INTO t1 VALUES(5); --let $file_2= query_get_value(SHOW MASTER STATUS, File, 1) FLUSH LOGS;
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
binlog.test | File | 10.68 KB | 0644 |
|
binlog_cache_stat.test | File | 13.09 KB | 0644 |
|
binlog_implicit_commit.inc | File | 1.6 KB | 0644 |
|
binlog_innodb.inc | File | 3.9 KB | 0644 |
|
binlog_insert_delayed.test | File | 2.38 KB | 0644 |
|
binlog_mysqlbinlog_fill.inc | File | 1.76 KB | 0644 |
|
binlog_mysqlbinlog_row.inc | File | 13.06 KB | 0644 |
|
binlog_mysqlbinlog_start_stop.inc | File | 1.81 KB | 0644 |
|
binlog_truncate.test | File | 1.6 KB | 0644 |
|
blackhole.test | File | 5.85 KB | 0644 |
|
ctype_cp932.test | File | 27.76 KB | 0644 |
|
ctype_cp932_binlog.test | File | 1.25 KB | 0644 |
|
ctype_ucs_binlog.test | File | 938 B | 0644 |
|
database.test | File | 2.57 KB | 0644 |
|
drop_table.test | File | 547 B | 0644 |
|
drop_temp_table.test | File | 4.84 KB | 0644 |
|
implicit.test | File | 567 B | 0644 |
|
insert_select-binlog.test | File | 1.03 KB | 0644 |
|
mix_innodb_myisam_binlog.test | File | 15.43 KB | 0644 |
|
mix_innodb_myisam_side_effects.test | File | 6.47 KB | 0644 |
|
mysqlbinlog_row_engine.inc | File | 46.03 KB | 0644 |
|
mysqlbinlog_start_stop_1.inc | File | 1.71 KB | 0644 |
|
mysqlbinlog_start_stop_2.inc | File | 1.27 KB | 0644 |
|