summaryrefslogtreecommitdiff
path: root/storage/sequence
diff options
context:
space:
mode:
Diffstat (limited to 'storage/sequence')
-rw-r--r--storage/sequence/mysql-test/sequence/simple.result8
-rw-r--r--storage/sequence/mysql-test/sequence/simple.test4
2 files changed, 6 insertions, 6 deletions
diff --git a/storage/sequence/mysql-test/sequence/simple.result b/storage/sequence/mysql-test/sequence/simple.result
index b14fde2cfef..2d56e57d199 100644
--- a/storage/sequence/mysql-test/sequence/simple.result
+++ b/storage/sequence/mysql-test/sequence/simple.result
@@ -262,9 +262,9 @@ commit;
select count(*) from t1;
count(*)
10
-show binlog events limit 2,10;
+show binlog events from <binlog_start> limit 10;
Log_name Pos Event_type Server_id End_log_pos Info
-master-bin.000001 286 Query 1 354 BEGIN
-master-bin.000001 354 Query 1 452 use test; insert t1 select * from seq_1_to_10
-master-bin.000001 452 Xid 1 479 COMMIT /* xid */
+master-bin.000001 # Gtid # # BEGIN GTID #-#-#
+master-bin.000001 # Query # # use test; insert t1 select * from seq_1_to_10
+master-bin.000001 # Xid # # COMMIT /* XID */
drop table t1;
diff --git a/storage/sequence/mysql-test/sequence/simple.test b/storage/sequence/mysql-test/sequence/simple.test
index 9559e42fafd..b16c954176e 100644
--- a/storage/sequence/mysql-test/sequence/simple.test
+++ b/storage/sequence/mysql-test/sequence/simple.test
@@ -87,7 +87,7 @@ rollback to savepoint s1;
commit;
select count(*) from t1;
# must show Xid event
---replace_regex /xid=[0-9]+/xid/
-show binlog events limit 2,10;
+let $binlog_limit= 10;
+--source include/show_binlog_events.inc
drop table t1;