mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
		
			
				
	
	
		
			10 lines
		
	
	
		
			209 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			209 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
-- Adjust this setting to control where the objects get created.
 | 
						|
SET search_path = public;
 | 
						|
 | 
						|
SET autocommit TO 'on';
 | 
						|
 | 
						|
CREATE OR REPLACE FUNCTION moddatetime()
 | 
						|
RETURNS trigger
 | 
						|
AS 'MODULE_PATHNAME'
 | 
						|
LANGUAGE 'C';
 |