mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| #
 | |
| # Test that Galera works correctly with multiline statements, in particular involving DDLs
 | |
| #
 | |
| 
 | |
| --source include/galera_cluster.inc
 | |
| 
 | |
| --connection node_1
 | |
| CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB; CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
 | |
| 
 | |
| SHOW CREATE TABLE t1;
 | |
| SHOW CREATE TABLE t2;
 | |
| 
 | |
| --connection node_2
 | |
| SHOW CREATE TABLE t1;
 | |
| SHOW CREATE TABLE t2;
 | |
| 
 | |
| --connection node_1
 | |
| --send CREATE TABLE t3 (f1 INTEGER) ENGINE=InnoDB; CREATE TABLE t4 (f1 INTEGER) ENGINE=InnoDB;
 | |
| --reap
 | |
| 
 | |
| SHOW CREATE TABLE t3;
 | |
| SHOW CREATE TABLE t4;
 | |
| 
 | |
| --connection node_2
 | |
| SHOW CREATE TABLE t3;
 | |
| SHOW CREATE TABLE t4;
 | |
| 
 | |
| --connection node_1
 | |
| INSERT INTO t1 VALUES (1); CREATE TABLE t5 (f1 INTEGER) ENGINE=InnoDB;
 | |
| 
 | |
| SELECT COUNT(*) = 1 FROM t1;
 | |
| SHOW CREATE TABLE t5;
 | |
| 
 | |
| --connection node_2
 | |
| SELECT COUNT(*) = 1 FROM t1;
 | |
| SHOW CREATE TABLE t5;
 | |
| 
 | |
| --connection node_1
 | |
| --send CREATE TABLE t6 (f1 INTEGER) ENGINE=InnoDB; INSERT INTO t2 VALUES (1);
 | |
| --reap
 | |
| 
 | |
| SELECT COUNT(*) = 1 FROM t2;
 | |
| SHOW CREATE TABLE t6;
 | |
| 
 | |
| --connection node_2
 | |
| SELECT COUNT(*) = 1 FROM t2;
 | |
| SHOW CREATE TABLE t6;
 | |
| 
 | |
| --let $diff_servers = 1 2
 | |
| --source include/diff_servers.inc
 | |
| 
 | |
| --connection node_1
 | |
| DROP TABLE t1, t2, t3, t4, t5, t6;
 | 
