mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	- this behavior was already changed, adding testcase mysql-test/r/ndb_binlog_discover.result: New BitKeeper file ``mysql-test/r/ndb_binlog_discover.result'' mysql-test/t/ndb_binlog_discover.test: New BitKeeper file ``mysql-test/t/ndb_binlog_discover.test''
		
			
				
	
	
		
			20 lines
		
	
	
		
			600 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			600 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| -- source include/have_ndb.inc
 | |
| -- source include/have_binlog_format_row.inc
 | |
| 
 | |
| --disable_warnings
 | |
| drop table if exists t1;
 | |
| --enable_warnings
 | |
| 
 | |
| #
 | |
| # Bug #14516 Restart of cluster can cause NDB API replication failure
 | |
| #
 | |
| create table t1 (a int key) engine=ndb;
 | |
| reset master;
 | |
| --exec $NDB_MGM --no-defaults -e "all restart -n" > /dev/null
 | |
| --exec $NDB_TOOLS_DIR/ndb_waiter --no-defaults --not-started > /dev/null
 | |
| --exec $NDB_MGM --no-defaults -e "all start" > /dev/null
 | |
| --exec $NDB_TOOLS_DIR/ndb_waiter --no-defaults > /dev/null
 | |
| insert into t1 values(1);
 | |
| --source include/show_binlog_events.inc
 | |
| drop table t1;
 |