mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
Adjust full test suite to work with GTID. Huge patch, mainly due to having to update .result file for all SHOW BINLOG EVENTS and mysqlbinlog outputs, where the new GTID events pop up. Everything was painstakingly checked to be still correct and valid .result file updates.
14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
|
|
SELECT @@global.gtid_seq_no;
|
|
|
|
--error ER_LOCAL_VARIABLE
|
|
SET GLOBAL gtid_seq_no= 10;
|
|
SET SESSION gtid_seq_no= 20;
|
|
SELECT @@session.gtid_seq_no;
|
|
|
|
--error ER_LOCAL_VARIABLE
|
|
SET GLOBAL gtid_seq_no= DEFAULT;
|
|
|
|
SET SESSION gtid_seq_no= -1;
|
|
SELECT @@session.gtid_seq_no;
|