mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			182 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			182 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| create table t (a int);
 | |
| create or replace view v as select 1 from t where a;
 | |
| delete from v where (select g());
 | |
| ERROR 42000: FUNCTION test.g does not exist
 | |
| drop view v;
 | |
| drop table t;
 | 
