Commit 8035c986 authored by Nirbhay Choubey's avatar Nirbhay Choubey

MDEV-6490: Post-fix for the failing test.

parent 42b6c07e
......@@ -9,10 +9,6 @@ USE bug6490;
CREATE TABLE t1(c1 INT);
INSERT INTO t1 values (1);
INSERT INTO t1 values (2);
# @@global.gtid_binlog_state - after
SELECT @@global.gtid_binlog_state;
@@global.gtid_binlog_state
0-1-4
# Save the current gtid_binlog_state.
# Take a dump of bug6490 database
DROP TABLE t1;
......@@ -22,10 +18,6 @@ SELECT * from t1;
c1
1
2
# @@global.gtid_binlog_state - after
SELECT @@global.gtid_binlog_state;
@@global.gtid_binlog_state
0-1-4
# Compare the two gtid_binlog_state's
# Cleanup
DROP DATABASE bug6490;
......
......@@ -16,9 +16,6 @@ CREATE TABLE t1(c1 INT);
INSERT INTO t1 values (1);
INSERT INTO t1 values (2);
--echo # @@global.gtid_binlog_state - after
SELECT @@global.gtid_binlog_state;
--echo # Save the current gtid_binlog_state.
--let $before= `SELECT @@global.gtid_binlog_state`
......@@ -32,9 +29,6 @@ RESET MASTER;
SELECT * from t1;
--echo # @@global.gtid_binlog_state - after
SELECT @@global.gtid_binlog_state;
--echo # Compare the two gtid_binlog_state's
--let $after= `SELECT @@global.gtid_binlog_state`
if (`SELECT STRCMP($before, $after)`)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment