1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-05 23:38:41 +03:00

contrib/tsm_system_time

This commit is contained in:
Simon Riggs
2015-05-15 15:31:50 -04:00
parent 4d40494b11
commit 56e121a508
7 changed files with 453 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# src/test/modules/tsm_system_time/Makefile
MODULE_big = tsm_system_time
OBJS = tsm_system_time.o $(WIN32RES)
PGFILEDESC = "tsm_system_time - SYSTEM TABLESAMPLE method which accepts number rows of as a limit"
EXTENSION = tsm_system_time
DATA = tsm_system_time--1.0.sql
REGRESS = tsm_system_time
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/tsm_system_time
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif