mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	any commutator operator for =(chkpass,text), so this was creating a shell operator that would fail on use. Found by opr_sanity testing.
		
			
				
	
	
		
			14 lines
		
	
	
		
			218 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			218 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
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;
 |