Skip to content

Commit

Permalink
MDEV-6490: Post-fix for the failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirbhay Choubey committed Aug 7, 2014
1 parent 42b6c07 commit 8035c98
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
8 changes: 0 additions & 8 deletions mysql-test/r/galera_sst_mode.result
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
6 changes: 0 additions & 6 deletions mysql-test/t/galera_sst_mode.test
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand All @@ -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)`)
Expand Down

0 comments on commit 8035c98

Please sign in to comment.