mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	Module provides new access method. It is actually a simple Bloom filter implemented as pgsql's index. It could give some benefits on search with large number of columns. Module is a single way to test generic WAL interface committed earlier. Author: Teodor Sigaev, Alexander Korotkov Reviewers: Aleksander Alekseev, Michael Paquier, Jim Nasby
		
			
				
	
	
		
			96 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# contrib/Makefile
 | 
						|
 | 
						|
subdir = contrib
 | 
						|
top_builddir = ..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
 | 
						|
SUBDIRS = \
 | 
						|
		adminpack	\
 | 
						|
		auth_delay	\
 | 
						|
		auto_explain	\
 | 
						|
		bloom		\
 | 
						|
		btree_gin	\
 | 
						|
		btree_gist	\
 | 
						|
		chkpass		\
 | 
						|
		citext		\
 | 
						|
		cube		\
 | 
						|
		dblink		\
 | 
						|
		dict_int	\
 | 
						|
		dict_xsyn	\
 | 
						|
		earthdistance	\
 | 
						|
		file_fdw	\
 | 
						|
		fuzzystrmatch	\
 | 
						|
		hstore		\
 | 
						|
		intagg		\
 | 
						|
		intarray	\
 | 
						|
		isn		\
 | 
						|
		lo		\
 | 
						|
		ltree		\
 | 
						|
		oid2name	\
 | 
						|
		pageinspect	\
 | 
						|
		passwordcheck	\
 | 
						|
		pg_buffercache	\
 | 
						|
		pg_freespacemap \
 | 
						|
		pg_prewarm	\
 | 
						|
		pg_standby	\
 | 
						|
		pg_stat_statements \
 | 
						|
		pg_trgm		\
 | 
						|
		pgcrypto	\
 | 
						|
		pgrowlocks	\
 | 
						|
		pgstattuple	\
 | 
						|
		pg_visibility	\
 | 
						|
		postgres_fdw	\
 | 
						|
		seg		\
 | 
						|
		spi		\
 | 
						|
		tablefunc	\
 | 
						|
		tcn		\
 | 
						|
		test_decoding	\
 | 
						|
		tsm_system_rows \
 | 
						|
		tsm_system_time \
 | 
						|
		tsearch2	\
 | 
						|
		unaccent	\
 | 
						|
		vacuumlo
 | 
						|
 | 
						|
ifeq ($(with_openssl),yes)
 | 
						|
SUBDIRS += sslinfo
 | 
						|
else
 | 
						|
ALWAYS_SUBDIRS += sslinfo
 | 
						|
endif
 | 
						|
 | 
						|
ifneq ($(with_uuid),no)
 | 
						|
SUBDIRS += uuid-ossp
 | 
						|
else
 | 
						|
ALWAYS_SUBDIRS += uuid-ossp
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(with_libxml),yes)
 | 
						|
SUBDIRS += xml2
 | 
						|
else
 | 
						|
ALWAYS_SUBDIRS += xml2
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(with_selinux),yes)
 | 
						|
SUBDIRS += sepgsql
 | 
						|
else
 | 
						|
ALWAYS_SUBDIRS += sepgsql
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(with_perl),yes)
 | 
						|
SUBDIRS += hstore_plperl
 | 
						|
else
 | 
						|
ALWAYS_SUBDIRS += hstore_plperl
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(with_python),yes)
 | 
						|
SUBDIRS += hstore_plpython ltree_plpython
 | 
						|
else
 | 
						|
ALWAYS_SUBDIRS += hstore_plpython ltree_plpython
 | 
						|
endif
 | 
						|
 | 
						|
# Missing:
 | 
						|
#		start-scripts	\ (does not have a makefile)
 | 
						|
 | 
						|
 | 
						|
$(recurse)
 | 
						|
$(recurse_always)
 |