1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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

This commit is contained in:
Nirbhay Choubey
2014-08-07 09:59:08 -04:00
parent 42b6c07ebd
commit 8035c986d4
2 changed files with 0 additions and 14 deletions

View File

@ -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;

View File

@ -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)`)