summaryrefslogtreecommitdiff
path: root/mysql-test/r/stat_tables_rbr.result
diff options
context:
space:
mode:
authorunknown <knielsen@knielsen-hq.org>2013-03-26 10:35:34 +0100
committerunknown <knielsen@knielsen-hq.org>2013-03-26 10:35:34 +0100
commitd9f975d08bc4480109b172e1f9c3799a375c238d (patch)
treed3a2b8fca828d150b3b25b6b688b979f6336f355 /mysql-test/r/stat_tables_rbr.result
parenta3f651d0f635df1a29d152c7088150b3ba144b72 (diff)
downloadmariadb-git-d9f975d08bc4480109b172e1f9c3799a375c238d.tar.gz
MDEV-26: Global transaction ID
Adjust full test suite to work with GTID. Huge patch, mainly due to having to update .result file for all SHOW BINLOG EVENTS and mysqlbinlog outputs, where the new GTID events pop up. Everything was painstakingly checked to be still correct and valid .result file updates.
Diffstat (limited to 'mysql-test/r/stat_tables_rbr.result')
-rw-r--r--mysql-test/r/stat_tables_rbr.result20
1 files changed, 13 insertions, 7 deletions
diff --git a/mysql-test/r/stat_tables_rbr.result b/mysql-test/r/stat_tables_rbr.result
index 9e236f424bf..27c326265f1 100644
--- a/mysql-test/r/stat_tables_rbr.result
+++ b/mysql-test/r/stat_tables_rbr.result
@@ -15,12 +15,18 @@ Table Op Msg_type Msg_text
test.t1 analyze status OK
SHOW BINLOG EVENTS;
Log_name Pos Event_type Server_id End_log_pos Info
-master-bin.000001 4 Format_desc 1 246 Server ver: #, Binlog ver: #
-master-bin.000001 246 Binlog_checkpoint 1 286 master-bin.000001
-master-bin.000001 286 Query 1 386 use `test`; CREATE TABLE t1 (i INT) ENGINE=InnoDB
-master-bin.000001 386 Query 1 465 use `test`; ANALYZE TABLE t1
-master-bin.000001 465 Query 1 569 use `test`; DROP TABLE `t1` /* generated by server */
-master-bin.000001 569 Query 1 705 use `test`; CREATE TABLE t1 ( a INT ) ENGINE=MyISAM PARTITION BY HASH(a) PARTITIONS 2
-master-bin.000001 705 Query 1 803 use `test`; ALTER TABLE t1 ANALYZE PARTITION p1
+master-bin.000001 4 Format_desc 1 248 Server ver: #, Binlog ver: #
+master-bin.000001 248 Gtid_list 1 271 []
+master-bin.000001 271 Binlog_checkpoint 1 311 master-bin.000001
+master-bin.000001 311 Gtid 1 349 GTID 0-1-1
+master-bin.000001 349 Query 1 449 use `test`; CREATE TABLE t1 (i INT) ENGINE=InnoDB
+master-bin.000001 449 Gtid 1 487 GTID 0-1-2
+master-bin.000001 487 Query 1 566 use `test`; ANALYZE TABLE t1
+master-bin.000001 566 Gtid 1 604 GTID 0-1-3
+master-bin.000001 604 Query 1 708 use `test`; DROP TABLE `t1` /* generated by server */
+master-bin.000001 708 Gtid 1 746 GTID 0-1-4
+master-bin.000001 746 Query 1 882 use `test`; CREATE TABLE t1 ( a INT ) ENGINE=MyISAM PARTITION BY HASH(a) PARTITIONS 2
+master-bin.000001 882 Gtid 1 920 GTID 0-1-5
+master-bin.000001 920 Query 1 1018 use `test`; ALTER TABLE t1 ANALYZE PARTITION p1
SET use_stat_tables = DEFAULT;
DROP TABLE t1;