Current Path : /usr/opt/mysql57/mysql-test/suite/binlog/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/opt/mysql57/mysql-test/suite/binlog/r/binlog_gtid_exhausted.result |
call mtr.add_suppression("An error occurred during flush stage of the commit"); call mtr.add_suppression("Attempting backtrace. You can use the following information to find out"); SET GLOBAL binlog_error_action=IGNORE_ERROR; CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB; RESET MASTER; SET GLOBAL gtid_purged = CONCAT(@@GLOBAL.server_uuid, ':1-9223372036854775805'); INSERT INTO t1 VALUES (1); INSERT INTO t1 VALUES (2); ERROR HY000: Impossible to generate GTID: the integer component reached the maximum value. Restart the server with a new server_uuid. include/assert_grep.inc [ER_GNO_EXHAUSTED found in server error log] include/assert.inc [Count of elements in t1 should be 2.] # restart RESET MASTER; DROP TABLE t1; CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB; RESET MASTER; SET GLOBAL gtid_purged = CONCAT(@@GLOBAL.server_uuid, ':1-9223372036854775805'); INSERT INTO t1 VALUES (1); SET GLOBAL binlog_error_action=ABORT_SERVER; INSERT INTO t1 VALUES (2); ERROR HY000: Binary logging not possible. Message: Impossible to generate GTID: the integer component reached the maximum value. Restart the server with a new server_uuid. Server is being stopped. RESET MASTER; DROP TABLE t1; include/assert_grep.inc [ER_GNO_EXHAUSTED server is being stopped found in server error log]