mirror of
https://github.com/postgres/postgres.git
synced 2026-02-26 03:11:02 -05:00
Add a TABLESAMPLE clause to SELECT statements that allows user to specify random BERNOULLI sampling or block level SYSTEM sampling. Implementation allows for extensible sampling functions to be written, using a standard API. Basic version follows SQLStandard exactly. Usable concrete use cases for the sampling API follow in later commits. Petr Jelinek Reviewed by Michael Paquier and Simon Riggs
14 lines
321 B
Makefile
14 lines
321 B
Makefile
#
|
|
# Makefile for the access methods module
|
|
#
|
|
# src/backend/access/Makefile
|
|
#
|
|
|
|
subdir = src/backend/access
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = brin common gin gist hash heap index nbtree rmgrdesc spgist \
|
|
tablesample transam
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|