mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Updated from Tomas review mysql-test/t/rpl_ndb_do_db.test: Updated from Tomas review mysql-test/t/rpl_ndb_do_table.test: Updated from Tomas review mysql-test/r/rpl_ndb_do_db.result: Updated from Tomas review mysql-test/r/rpl_ndb_do_table.result: Updated from Tomas review mysql-test/r/rpl_ndb_rep_ignore.result: Updated from Tomas review mysql-test/t/rpl_ndb_rep_ignore.test: Updated from Tomas review
		
			
				
	
	
		
			23 lines
		
	
	
		
			675 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			675 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| stop slave;
 | |
| drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 | |
| reset master;
 | |
| reset slave;
 | |
| drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 | |
| start slave;
 | |
| DROP TABLE IF EXISTS t1, t2;
 | |
| CREATE TABLE t1 (a INT NOT NULL KEY, b text NOT NULL)ENGINE=NDB;
 | |
| CREATE TABLE t2 (a INT NOT NULL KEY, b text NOT NULL)ENGINE=NDB;
 | |
| INSERT INTO t1 VALUES(1, repeat('abc',10));
 | |
| INSERT INTO t1 VALUES(2, repeat('def',200));
 | |
| INSERT INTO t1 VALUES(3, repeat('ghi',3000));
 | |
| INSERT INTO t2 VALUES(1, repeat('abc',10));
 | |
| INSERT INTO t2 VALUES(2, repeat('def',200));
 | |
| INSERT INTO t2 VALUES(3, repeat('ghi',3000));
 | |
| SHOW TABLES;
 | |
| Tables_in_test
 | |
| t1
 | |
| SELECT COUNT(*) FROM t1;
 | |
| COUNT(*)
 | |
| 3
 | |
| DROP TABLE IF EXISTS t1, t2;
 |