mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
91d53ea339
Changes to be committed: modified: mysql-test/suite/galera/r/MW-388.result modified: mysql-test/suite/galera/r/MW-86-wait1.result modified: mysql-test/suite/galera/r/MW-86-wait8.result modified: mysql-test/suite/galera/r/galera_myisam_autocommit.result modified: mysql-test/suite/galera/r/galera_var_retry_autocommit.result modified: mysql-test/suite/galera/t/galera_myisam_autocommit.test These tests are run only using debug Galera library and changes are only test related. Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
48 lines
1.2 KiB
Text
48 lines
1.2 KiB
Text
connection node_2;
|
|
connection node_1;
|
|
SET @orig_debug=@@debug_dbug;
|
|
connection node_2;
|
|
SELECT @@debug_sync;
|
|
@@debug_sync
|
|
ON - current signals: ''
|
|
set debug_sync='RESET';
|
|
SET SESSION wsrep_sync_wait = 1;
|
|
SET GLOBAL debug_dbug = "+d,sync.wsrep_apply_cb";
|
|
connection node_1;
|
|
CREATE TABLE t_wait1 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t_wait1 VALUES (1);
|
|
connection node_2;
|
|
SET SESSION debug_sync = "now WAIT_FOR sync.wsrep_apply_cb_reached";
|
|
SHOW BINARY LOGS;
|
|
SHOW BINLOG EVENTS;
|
|
SHOW COLUMNS FROM t1;
|
|
SHOW CREATE EVENT e1;
|
|
SHOW CREATE FUNCTION f1;
|
|
SHOW CREATE PROCEDURE p1;
|
|
SHOW CREATE TABLE t1;
|
|
SHOW CREATE TRIGGER tr1;
|
|
SHOW CREATE VIEW v1;
|
|
SHOW DATABASES;
|
|
SHOW ENGINE InnoDB STATUS;
|
|
SHOW FUNCTION CODE f1;
|
|
SHOW FUNCTION STATUS;
|
|
SHOW GRANTS FOR 'root'@'localhost';
|
|
SHOW INDEX FROM t1;
|
|
SHOW OPEN TABLES;
|
|
SHOW PROCEDURE CODE p1;
|
|
SHOW PROCEDURE STATUS;
|
|
SHOW PRIVILEGES;
|
|
SHOW STATUS LIKE 'wsrep_cluster_size';
|
|
SHOW TABLE STATUS;
|
|
SHOW TABLES;
|
|
SHOW TRIGGERS;
|
|
SHOW GLOBAL VARIABLES LIKE 'foo_bar';
|
|
SHOW WARNINGS;
|
|
SET GLOBAL debug_dbug = @orig_debug;
|
|
SET SESSION debug_sync = "now SIGNAL signal.wsrep_apply_cb";
|
|
SET debug_sync='RESET';
|
|
SET SESSION wsrep_sync_wait = default;
|
|
DROP TABLE t_wait1;
|
|
SELECT @@debug_sync;
|
|
@@debug_sync
|
|
ON - current signals: ''
|