mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	This feature set did not handle empty ranges correctly, and it's now
too late for PostgreSQL 17 to fix it.
The following commits are reverted:
    6db4598fcb Add stratnum GiST support function
    46a0cd4cef Add temporal PRIMARY KEY and UNIQUE constraints
    86232a49a4 Fix comment on gist_stratnum_btree
    030e10ff1a Rename pg_constraint.conwithoutoverlaps to conperiod
    a88c800deb Use daterange and YMD in without_overlaps tests instead of tsrange.
    5577a71fb0 Use half-open interval notation in without_overlaps tests
    34768ee361 Add temporal FOREIGN KEY contraints
    482e108cd3 Add test for REPLICA IDENTITY with a temporal key
    c3db1f30cb doc:  clarify PERIOD and WITHOUT OVERLAPS in CREATE TABLE
    144c2ce0cc Fix ON CONFLICT DO NOTHING/UPDATE for temporal indexes
Discussion: https://www.postgresql.org/message-id/d0b64a7a-dfe4-4b84-a906-c7dedfa40a3e@eisentraut.org
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# contrib/btree_gist/Makefile
 | 
						|
 | 
						|
MODULE_big = btree_gist
 | 
						|
 | 
						|
OBJS =  \
 | 
						|
	$(WIN32RES) \
 | 
						|
	btree_bit.o \
 | 
						|
	btree_bool.o \
 | 
						|
	btree_bytea.o \
 | 
						|
	btree_cash.o \
 | 
						|
	btree_date.o \
 | 
						|
	btree_enum.o \
 | 
						|
	btree_float4.o \
 | 
						|
	btree_float8.o \
 | 
						|
	btree_gist.o \
 | 
						|
	btree_inet.o \
 | 
						|
	btree_int2.o \
 | 
						|
	btree_int4.o \
 | 
						|
	btree_int8.o \
 | 
						|
	btree_interval.o \
 | 
						|
	btree_macaddr.o \
 | 
						|
	btree_macaddr8.o \
 | 
						|
	btree_numeric.o \
 | 
						|
	btree_oid.o \
 | 
						|
	btree_text.o \
 | 
						|
	btree_time.o \
 | 
						|
	btree_ts.o \
 | 
						|
	btree_utils_num.o \
 | 
						|
	btree_utils_var.o \
 | 
						|
	btree_uuid.o
 | 
						|
 | 
						|
EXTENSION = btree_gist
 | 
						|
DATA = btree_gist--1.0--1.1.sql \
 | 
						|
       btree_gist--1.1--1.2.sql btree_gist--1.2.sql btree_gist--1.2--1.3.sql \
 | 
						|
       btree_gist--1.3--1.4.sql btree_gist--1.4--1.5.sql \
 | 
						|
       btree_gist--1.5--1.6.sql btree_gist--1.6--1.7.sql
 | 
						|
PGFILEDESC = "btree_gist - B-tree equivalent GiST operator classes"
 | 
						|
 | 
						|
REGRESS = init int2 int4 int8 float4 float8 cash oid timestamp timestamptz \
 | 
						|
        time timetz date interval macaddr macaddr8 inet cidr text varchar char \
 | 
						|
        bytea bit varbit numeric uuid not_equal enum bool partitions
 | 
						|
 | 
						|
SHLIB_LINK += $(filter -lm, $(LIBS))
 | 
						|
 | 
						|
ifdef USE_PGXS
 | 
						|
PG_CONFIG = pg_config
 | 
						|
PGXS := $(shell $(PG_CONFIG) --pgxs)
 | 
						|
include $(PGXS)
 | 
						|
else
 | 
						|
subdir = contrib/btree_gist
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 | 
						|
endif
 |