mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			603 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			603 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #
 | |
| # MDEV-30838 - Assertion `m_thd == _current_thd()' failed in
 | |
| # virtual int Wsrep_client_service::bf_rollback()
 | |
| #
 | |
| --source include/galera_cluster.inc
 | |
| --source include/have_debug_sync.inc
 | |
| CREATE TABLE t1 (f1 INTEGER PRIMARY KEY);
 | |
| SET SESSION wsrep_trx_fragment_size=1;
 | |
| START TRANSACTION;
 | |
| INSERT INTO t1 VALUES(1);
 | |
| SET debug_dbug='+d,ib_create_table_fail_too_many_trx';
 | |
| --error ER_ERROR_DURING_COMMIT
 | |
| INSERT INTO t1 VALUES(2);
 | |
| COMMIT;
 | |
| SELECT * FROM t1;
 | |
| SET debug_dbug='-d,ib_create_table_fail_too_many_trx';
 | |
| DROP TABLE t1;
 | |
| CALL mtr.add_suppression("Error writing into mysql\\.wsrep_streaming_log: 177");
 | 
