1 /*-------------------------------------------------------------------------
4 * API for tablesample methods
6 * Copyright (c) 2015-2021, PostgreSQL Global Development Group
8 * src/include/access/tsmapi.h
10 *-------------------------------------------------------------------------
15 #include "nodes/execnodes.h"
16 #include "nodes/pathnodes.h"
20 * Callback function signatures --- see tablesample-method.sgml for more info.
23 typedef void (*SampleScanGetSampleSize_function
) (PlannerInfo
*root
,
29 typedef void (*InitSampleScan_function
) (SampleScanState
*node
,
32 typedef void (*BeginSampleScan_function
) (SampleScanState
*node
,
37 typedef BlockNumber (*NextSampleBlock_function
) (SampleScanState
*node
,
40 typedef OffsetNumber (*NextSampleTuple_function
) (SampleScanState
*node
,
42 OffsetNumber maxoffset
);
44 typedef void (*EndSampleScan_function
) (SampleScanState
*node
);
47 * TsmRoutine is the struct returned by a tablesample method's handler
48 * function. It provides pointers to the callback functions needed by the
49 * planner and executor, as well as additional information about the method.
51 * More function pointers are likely to be added in the future.
52 * Therefore it's recommended that the handler initialize the struct with
53 * makeNode(TsmRoutine) so that all fields are set to NULL. This will
54 * ensure that no fields are accidentally left undefined.
56 typedef struct TsmRoutine
60 /* List of datatype OIDs for the arguments of the TABLESAMPLE clause */
63 /* Can method produce repeatable samples across, or even within, queries? */
64 bool repeatable_across_queries
;
65 bool repeatable_across_scans
;
67 /* Functions for planning a SampleScan on a physical table */
68 SampleScanGetSampleSize_function SampleScanGetSampleSize
;
70 /* Functions for executing a SampleScan on a physical table */
71 InitSampleScan_function InitSampleScan
; /* can be NULL */
72 BeginSampleScan_function BeginSampleScan
;
73 NextSampleBlock_function NextSampleBlock
; /* can be NULL */
74 NextSampleTuple_function NextSampleTuple
;
75 EndSampleScan_function EndSampleScan
; /* can be NULL */
79 /* Functions in access/tablesample/tablesample.c */
80 extern TsmRoutine
*GetTsmRoutine(Oid tsmhandler
);