mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	We have seen one too many reports of people trying to use 9.1 extension files in the old-fashioned way of sourcing them in psql. Not only does that usually not work (due to failure to substitute for MODULE_PATHNAME and/or @extschema@), but if it did work they'd get a collection of loose objects not an extension. To prevent this, insert an \echo ... \quit line that prints a suitable error message into each extension script file, and teach commands/extension.c to ignore lines starting with \echo. That should not only prevent any adverse consequences of loading a script file the wrong way, but make it crystal clear to users that they need to do it differently now. Tom Lane, following an idea of Andrew Dunstan's. Back-patch into 9.1 ... there is not going to be much value in this if we wait till 9.2.
		
			
				
	
	
		
			89 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
| /* contrib/tablefunc/tablefunc--1.0.sql */
 | |
| 
 | |
| -- complain if script is sourced in psql, rather than via CREATE EXTENSION
 | |
| \echo Use "CREATE EXTENSION tablefunc" to load this file. \quit
 | |
| 
 | |
| CREATE FUNCTION normal_rand(int4, float8, float8)
 | |
| RETURNS setof float8
 | |
| AS 'MODULE_PATHNAME','normal_rand'
 | |
| LANGUAGE C VOLATILE STRICT;
 | |
| 
 | |
| -- the generic crosstab function:
 | |
| CREATE FUNCTION crosstab(text)
 | |
| RETURNS setof record
 | |
| AS 'MODULE_PATHNAME','crosstab'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| -- examples of building custom type-specific crosstab functions:
 | |
| CREATE TYPE tablefunc_crosstab_2 AS
 | |
| (
 | |
| 	row_name TEXT,
 | |
| 	category_1 TEXT,
 | |
| 	category_2 TEXT
 | |
| );
 | |
| 
 | |
| CREATE TYPE tablefunc_crosstab_3 AS
 | |
| (
 | |
| 	row_name TEXT,
 | |
| 	category_1 TEXT,
 | |
| 	category_2 TEXT,
 | |
| 	category_3 TEXT
 | |
| );
 | |
| 
 | |
| CREATE TYPE tablefunc_crosstab_4 AS
 | |
| (
 | |
| 	row_name TEXT,
 | |
| 	category_1 TEXT,
 | |
| 	category_2 TEXT,
 | |
| 	category_3 TEXT,
 | |
| 	category_4 TEXT
 | |
| );
 | |
| 
 | |
| CREATE FUNCTION crosstab2(text)
 | |
| RETURNS setof tablefunc_crosstab_2
 | |
| AS 'MODULE_PATHNAME','crosstab'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| CREATE FUNCTION crosstab3(text)
 | |
| RETURNS setof tablefunc_crosstab_3
 | |
| AS 'MODULE_PATHNAME','crosstab'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| CREATE FUNCTION crosstab4(text)
 | |
| RETURNS setof tablefunc_crosstab_4
 | |
| AS 'MODULE_PATHNAME','crosstab'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| -- obsolete:
 | |
| CREATE FUNCTION crosstab(text,int)
 | |
| RETURNS setof record
 | |
| AS 'MODULE_PATHNAME','crosstab'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| CREATE FUNCTION crosstab(text,text)
 | |
| RETURNS setof record
 | |
| AS 'MODULE_PATHNAME','crosstab_hash'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| CREATE FUNCTION connectby(text,text,text,text,int,text)
 | |
| RETURNS setof record
 | |
| AS 'MODULE_PATHNAME','connectby_text'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| CREATE FUNCTION connectby(text,text,text,text,int)
 | |
| RETURNS setof record
 | |
| AS 'MODULE_PATHNAME','connectby_text'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| -- These 2 take the name of a field to ORDER BY as 4th arg (for sorting siblings)
 | |
| 
 | |
| CREATE FUNCTION connectby(text,text,text,text,text,int,text)
 | |
| RETURNS setof record
 | |
| AS 'MODULE_PATHNAME','connectby_text_serial'
 | |
| LANGUAGE C STABLE STRICT;
 | |
| 
 | |
| CREATE FUNCTION connectby(text,text,text,text,text,int)
 | |
| RETURNS setof record
 | |
| AS 'MODULE_PATHNAME','connectby_text_serial'
 | |
| LANGUAGE C STABLE STRICT;
 |