mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 00:03:57 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			387 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			387 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| /* $PostgreSQL: pgsql/contrib/chkpass/uninstall_chkpass.sql,v 1.5 2007/11/13 04:24:27 momjian Exp $ */
 | |
| 
 | |
| -- Adjust this setting to control where the objects get dropped.
 | |
| SET search_path = public;
 | |
| 
 | |
| DROP OPERATOR <>(chkpass, text);
 | |
| 
 | |
| DROP OPERATOR =(chkpass, text);
 | |
| 
 | |
| DROP FUNCTION ne(chkpass, text);
 | |
| 
 | |
| DROP FUNCTION eq(chkpass, text);
 | |
| 
 | |
| DROP FUNCTION raw(chkpass);
 | |
| 
 | |
| DROP TYPE chkpass CASCADE;
 |