mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 18:36:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| connection node_2;
 | |
| connection node_1;
 | |
| connection node_1;
 | |
| connection node_2;
 | |
| connection node_1;
 | |
| call mtr.add_suppression("WSREP: Event .* Write_rows_v1 apply failed: ");
 | |
| call mtr.add_suppression("WSREP: Failed to apply write set: ");
 | |
| call mtr.add_suppression("WSREP: Inconsistency detected: Inconsistent by consensus on ");
 | |
| connection node_2;
 | |
| call mtr.add_suppression("WSREP: Failed to open table mysql\\.wsrep_streaming_log for writing");
 | |
| call mtr.add_suppression("WSREP: Failed to open SR table for write");
 | |
| call mtr.add_suppression("WSREP: Failed to recover SR transactions from schema: wsrep_on : 0");
 | |
| call mtr.add_suppression("WSREP: Inconsistency detected: Inconsistent by consensus on ");
 | |
| SET @@global.tx_read_only = ON;
 | |
| SET default_storage_engine = SEQUENCE;
 | |
| create table t1 (c1 int);
 | |
| ERROR HY000: Can't create table `test`.`t1` (errno: 131 "Command not supported by the engine")
 | |
| CREATE TABLE t1(c1 VARCHAR(20)) engine=innodb;
 | |
| INSERT INTO t1  VALUES(0xA9B8);
 | |
| create TABLE t1 (c1 int) engine=innodb;
 | |
| ERROR 42S01: Table 't1' already exists
 | |
| create TABLE t1 (c1 int) engine=innodb;
 | |
| ERROR 42S01: Table 't1' already exists
 | |
| SET GLOBAL wsrep_on=OFF;
 | |
| SET GLOBAL wsrep_cluster_address='gcomm://';
 | |
| INSERT INTO t1  VALUES (1);
 | |
| SELECT 1;
 | |
| 1
 | |
| 1
 | |
| SELECT 1;
 | |
| 1
 | |
| 1
 | |
| COMMIT;
 | |
| # Killing cluster because we have messed with wsrep_cluster_address
 | |
| connection node_2;
 | |
| SET SESSION wsrep_sync_wait = 0;
 | |
| Killing server ...
 | |
| connection node_1;
 | |
| SET SESSION wsrep_sync_wait = 0;
 | |
| Killing server ...
 | |
| connection node_2;
 | |
| call mtr.add_suppression("WSREP: Failed to open table mysql\\.wsrep_streaming_log for writing");
 | |
| call mtr.add_suppression("WSREP: Failed to open SR table for write");
 | |
| call mtr.add_suppression("WSREP: Failed to recover SR transactions from schema: wsrep_on : 0");
 | |
| DROP TABLE IF EXISTS t1;
 | 
