mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Install compiled functions into $(LIBDIR)/contrib. (Thanks to Brook Milligan <brook@trillium.NMSU.Edu>)
		
			
				
	
	
		
			7 lines
		
	
	
		
			141 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			141 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
DROP FUNCTION insert_username();
 | 
						|
 | 
						|
CREATE FUNCTION insert_username() 
 | 
						|
	RETURNS opaque 
 | 
						|
	AS '_OBJWD_/insert_username_DLSUFFIX_'
 | 
						|
	LANGUAGE 'c';
 |