mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			340 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			340 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| create table v1 (a int);
 | |
| include/master-slave.inc
 | |
| [connection master]
 | |
| connection master;
 | |
| create table t1 (a int);
 | |
| create view v1 as select * from t1;
 | |
| ERROR 42S01: Table 'v1' already exists
 | |
| show tables;
 | |
| Tables_in_test
 | |
| t1
 | |
| v1
 | |
| connection slave;
 | |
| show tables;
 | |
| Tables_in_test
 | |
| t1
 | |
| connection master;
 | |
| drop table if exists t1, v1;
 | |
| include/rpl_end.inc
 | 
