mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	The new fields are min_time, max_time, mean_time and stddev_time. Based on an original patch from Mitsumasa KONDO, modified by me. Reviewed by Petr Jelínek.
		
			
				
	
	
		
			22 lines
		
	
	
		
			649 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			649 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# contrib/pg_stat_statements/Makefile
 | 
						|
 | 
						|
MODULE_big = pg_stat_statements
 | 
						|
OBJS = pg_stat_statements.o $(WIN32RES)
 | 
						|
 | 
						|
EXTENSION = pg_stat_statements
 | 
						|
DATA = pg_stat_statements--1.3.sql pg_stat_statements--1.2--1.3.sql \
 | 
						|
	pg_stat_statements--1.1--1.2.sql pg_stat_statements--1.0--1.1.sql \
 | 
						|
	pg_stat_statements--unpackaged--1.0.sql
 | 
						|
PGFILEDESC = "pg_stat_statements - execution statistics of SQL statements"
 | 
						|
 | 
						|
ifdef USE_PGXS
 | 
						|
PG_CONFIG = pg_config
 | 
						|
PGXS := $(shell $(PG_CONFIG) --pgxs)
 | 
						|
include $(PGXS)
 | 
						|
else
 | 
						|
subdir = contrib/pg_stat_statements
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 | 
						|
endif
 |