PostgreSQL Source Code  git master
amapi.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * amapi.h
4  * API for Postgres index access methods.
5  *
6  * Copyright (c) 2015-2024, PostgreSQL Global Development Group
7  *
8  * src/include/access/amapi.h
9  *
10  *-------------------------------------------------------------------------
11  */
12 #ifndef AMAPI_H
13 #define AMAPI_H
14 
15 #include "access/genam.h"
16 
17 /*
18  * We don't wish to include planner header files here, since most of an index
19  * AM's implementation isn't concerned with those data structures. To allow
20  * declaring amcostestimate_function here, use forward struct references.
21  */
22 struct PlannerInfo;
23 struct IndexPath;
24 
25 /* Likewise, this file shouldn't depend on execnodes.h. */
26 struct IndexInfo;
27 
28 
29 /*
30  * Properties for amproperty API. This list covers properties known to the
31  * core code, but an index AM can define its own properties, by matching the
32  * string property name.
33  */
34 typedef enum IndexAMProperty
35 {
36  AMPROP_UNKNOWN = 0, /* anything not known to core code */
37  AMPROP_ASC, /* column properties */
46  AMPROP_CLUSTERABLE, /* index properties */
50  AMPROP_CAN_ORDER, /* AM properties */
56 
57 /*
58  * We use lists of this struct type to keep track of both operators and
59  * support functions while building or adding to an opclass or opfamily.
60  * amadjustmembers functions receive lists of these structs, and are allowed
61  * to alter their "ref" fields.
62  *
63  * The "ref" fields define how the pg_amop or pg_amproc entry should depend
64  * on the associated objects (that is, which dependency type to use, and
65  * which opclass or opfamily it should depend on).
66  *
67  * If ref_is_hard is true, the entry will have a NORMAL dependency on the
68  * operator or support func, and an INTERNAL dependency on the opclass or
69  * opfamily. This forces the opclass or opfamily to be dropped if the
70  * operator or support func is dropped, and requires the CASCADE option
71  * to do so. Nor will ALTER OPERATOR FAMILY DROP be allowed. This is
72  * the right behavior for objects that are essential to an opclass.
73  *
74  * If ref_is_hard is false, the entry will have an AUTO dependency on the
75  * operator or support func, and also an AUTO dependency on the opclass or
76  * opfamily. This allows ALTER OPERATOR FAMILY DROP, and causes that to
77  * happen automatically if the operator or support func is dropped. This
78  * is the right behavior for inessential ("loose") objects.
79  */
80 typedef struct OpFamilyMember
81 {
82  bool is_func; /* is this an operator, or support func? */
83  Oid object; /* operator or support func's OID */
84  int number; /* strategy or support func number */
85  Oid lefttype; /* lefttype */
86  Oid righttype; /* righttype */
87  Oid sortfamily; /* ordering operator's sort opfamily, or 0 */
88  bool ref_is_hard; /* hard or soft dependency? */
89  bool ref_is_family; /* is dependency on opclass or opfamily? */
90  Oid refobjid; /* OID of opclass or opfamily */
92 
93 
94 /*
95  * Callback function signatures --- see indexam.sgml for more info.
96  */
97 
98 /* build new index */
99 typedef IndexBuildResult *(*ambuild_function) (Relation heapRelation,
100  Relation indexRelation,
101  struct IndexInfo *indexInfo);
102 
103 /* build empty index */
104 typedef void (*ambuildempty_function) (Relation indexRelation);
105 
106 /* insert this tuple */
107 typedef bool (*aminsert_function) (Relation indexRelation,
108  Datum *values,
109  bool *isnull,
110  ItemPointer heap_tid,
111  Relation heapRelation,
112  IndexUniqueCheck checkUnique,
113  bool indexUnchanged,
114  struct IndexInfo *indexInfo);
115 
116 /* cleanup after insert */
117 typedef void (*aminsertcleanup_function) (Relation indexRelation,
118  struct IndexInfo *indexInfo);
119 
120 /* bulk delete */
121 typedef IndexBulkDeleteResult *(*ambulkdelete_function) (IndexVacuumInfo *info,
122  IndexBulkDeleteResult *stats,
124  void *callback_state);
125 
126 /* post-VACUUM cleanup */
127 typedef IndexBulkDeleteResult *(*amvacuumcleanup_function) (IndexVacuumInfo *info,
128  IndexBulkDeleteResult *stats);
129 
130 /* can indexscan return IndexTuples? */
131 typedef bool (*amcanreturn_function) (Relation indexRelation, int attno);
132 
133 /* estimate cost of an indexscan */
134 typedef void (*amcostestimate_function) (struct PlannerInfo *root,
135  struct IndexPath *path,
136  double loop_count,
137  Cost *indexStartupCost,
138  Cost *indexTotalCost,
139  Selectivity *indexSelectivity,
140  double *indexCorrelation,
141  double *indexPages);
142 
143 /* estimate height of a tree-structured index
144  *
145  * XXX This just computes a value that is later used by amcostestimate. This
146  * API could be expanded to support passing more values if the need arises.
147  */
148 typedef int (*amgettreeheight_function) (Relation rel);
149 
150 /* parse index reloptions */
151 typedef bytea *(*amoptions_function) (Datum reloptions,
152  bool validate);
153 
154 /* report AM, index, or index column property */
155 typedef bool (*amproperty_function) (Oid index_oid, int attno,
156  IndexAMProperty prop, const char *propname,
157  bool *res, bool *isnull);
158 
159 /* name of phase as used in progress reporting */
160 typedef char *(*ambuildphasename_function) (int64 phasenum);
161 
162 /* validate definition of an opclass for this AM */
163 typedef bool (*amvalidate_function) (Oid opclassoid);
164 
165 /* validate operators and support functions to be added to an opclass/family */
166 typedef void (*amadjustmembers_function) (Oid opfamilyoid,
167  Oid opclassoid,
168  List *operators,
169  List *functions);
170 
171 /* prepare for index scan */
172 typedef IndexScanDesc (*ambeginscan_function) (Relation indexRelation,
173  int nkeys,
174  int norderbys);
175 
176 /* (re)start index scan */
177 typedef void (*amrescan_function) (IndexScanDesc scan,
178  ScanKey keys,
179  int nkeys,
180  ScanKey orderbys,
181  int norderbys);
182 
183 /* next valid tuple */
185  ScanDirection direction);
186 
187 /* fetch all valid tuples */
188 typedef int64 (*amgetbitmap_function) (IndexScanDesc scan,
189  TIDBitmap *tbm);
190 
191 /* end index scan */
192 typedef void (*amendscan_function) (IndexScanDesc scan);
193 
194 /* mark current scan position */
195 typedef void (*ammarkpos_function) (IndexScanDesc scan);
196 
197 /* restore marked scan position */
198 typedef void (*amrestrpos_function) (IndexScanDesc scan);
199 
200 /*
201  * Callback function signatures - for parallel index scans.
202  */
203 
204 /* estimate size of parallel scan descriptor */
205 typedef Size (*amestimateparallelscan_function) (int nkeys, int norderbys);
206 
207 /* prepare for parallel index scan */
208 typedef void (*aminitparallelscan_function) (void *target);
209 
210 /* (re)start parallel index scan */
212 
213 /*
214  * API struct for an index AM. Note this must be stored in a single palloc'd
215  * chunk of memory.
216  */
217 typedef struct IndexAmRoutine
218 {
220 
221  /*
222  * Total number of strategies (operators) by which we can traverse/search
223  * this AM. Zero if AM does not have a fixed set of strategy assignments.
224  */
226  /* total number of support functions that this AM uses */
228  /* opclass options support function number or 0 */
230  /* does AM support ORDER BY indexed column's value? */
232  /* does AM support ORDER BY result of an operator on indexed column? */
234  /* does AM support backward scanning? */
236  /* does AM support UNIQUE indexes? */
238  /* does AM support multi-column indexes? */
240  /* does AM require scans to have a constraint on the first index column? */
242  /* does AM handle ScalarArrayOpExpr quals? */
244  /* does AM handle IS NULL/IS NOT NULL quals? */
246  /* can index storage data type differ from column data type? */
247  bool amstorage;
248  /* can an index of this type be clustered on? */
250  /* does AM handle predicate locks? */
252  /* does AM support parallel scan? */
254  /* does AM support parallel build? */
256  /* does AM support columns included with clause INCLUDE? */
258  /* does AM use maintenance_work_mem? */
260  /* does AM store tuple information only at block granularity? */
262  /* OR of parallel vacuum flags. See vacuum.h for flags. */
264  /* type of data stored in index, or InvalidOid if variable */
266 
267  /*
268  * If you add new properties to either the above or the below lists, then
269  * they should also (usually) be exposed via the property API (see
270  * IndexAMProperty at the top of the file, and utils/adt/amutils.c).
271  */
272 
273  /* interface functions */
284  amproperty_function amproperty; /* can be NULL */
290  amgettuple_function amgettuple; /* can be NULL */
293  ammarkpos_function ammarkpos; /* can be NULL */
294  amrestrpos_function amrestrpos; /* can be NULL */
295 
296  /* interface functions to support parallel index scans */
301 
302 
303 /* Functions in access/index/amapi.c */
304 extern IndexAmRoutine *GetIndexAmRoutine(Oid amhandler);
305 extern IndexAmRoutine *GetIndexAmRoutineByAmId(Oid amoid, bool noerror);
306 
307 #endif /* AMAPI_H */
void(* amparallelrescan_function)(IndexScanDesc scan)
Definition: amapi.h:211
Size(* amestimateparallelscan_function)(int nkeys, int norderbys)
Definition: amapi.h:205
IndexScanDesc(* ambeginscan_function)(Relation indexRelation, int nkeys, int norderbys)
Definition: amapi.h:172
void(* amadjustmembers_function)(Oid opfamilyoid, Oid opclassoid, List *operators, List *functions)
Definition: amapi.h:166
int(* amgettreeheight_function)(Relation rel)
Definition: amapi.h:148
bool(* amproperty_function)(Oid index_oid, int attno, IndexAMProperty prop, const char *propname, bool *res, bool *isnull)
Definition: amapi.h:155
bool(* amvalidate_function)(Oid opclassoid)
Definition: amapi.h:163
void(* amendscan_function)(IndexScanDesc scan)
Definition: amapi.h:192
bool(* amcanreturn_function)(Relation indexRelation, int attno)
Definition: amapi.h:131
bool(* aminsert_function)(Relation indexRelation, Datum *values, bool *isnull, ItemPointer heap_tid, Relation heapRelation, IndexUniqueCheck checkUnique, bool indexUnchanged, struct IndexInfo *indexInfo)
Definition: amapi.h:107
void(* ambuildempty_function)(Relation indexRelation)
Definition: amapi.h:104
IndexAmRoutine * GetIndexAmRoutineByAmId(Oid amoid, bool noerror)
Definition: amapi.c:56
IndexBulkDeleteResult *(* ambulkdelete_function)(IndexVacuumInfo *info, IndexBulkDeleteResult *stats, IndexBulkDeleteCallback callback, void *callback_state)
Definition: amapi.h:121
IndexAmRoutine * GetIndexAmRoutine(Oid amhandler)
Definition: amapi.c:33
int64(* amgetbitmap_function)(IndexScanDesc scan, TIDBitmap *tbm)
Definition: amapi.h:188
void(* amrestrpos_function)(IndexScanDesc scan)
Definition: amapi.h:198
IndexBulkDeleteResult *(* amvacuumcleanup_function)(IndexVacuumInfo *info, IndexBulkDeleteResult *stats)
Definition: amapi.h:127
void(* amcostestimate_function)(struct PlannerInfo *root, struct IndexPath *path, double loop_count, Cost *indexStartupCost, Cost *indexTotalCost, Selectivity *indexSelectivity, double *indexCorrelation, double *indexPages)
Definition: amapi.h:134
bool(* amgettuple_function)(IndexScanDesc scan, ScanDirection direction)
Definition: amapi.h:184
IndexAMProperty
Definition: amapi.h:35
@ AMPROP_BACKWARD_SCAN
Definition: amapi.h:49
@ AMPROP_SEARCH_ARRAY
Definition: amapi.h:44
@ AMPROP_CAN_MULTI_COL
Definition: amapi.h:52
@ AMPROP_CAN_ORDER
Definition: amapi.h:50
@ AMPROP_ORDERABLE
Definition: amapi.h:41
@ AMPROP_ASC
Definition: amapi.h:37
@ AMPROP_DISTANCE_ORDERABLE
Definition: amapi.h:42
@ AMPROP_CAN_INCLUDE
Definition: amapi.h:54
@ AMPROP_SEARCH_NULLS
Definition: amapi.h:45
@ AMPROP_CAN_EXCLUDE
Definition: amapi.h:53
@ AMPROP_UNKNOWN
Definition: amapi.h:36
@ AMPROP_CAN_UNIQUE
Definition: amapi.h:51
@ AMPROP_DESC
Definition: amapi.h:38
@ AMPROP_NULLS_LAST
Definition: amapi.h:40
@ AMPROP_INDEX_SCAN
Definition: amapi.h:47
@ AMPROP_NULLS_FIRST
Definition: amapi.h:39
@ AMPROP_CLUSTERABLE
Definition: amapi.h:46
@ AMPROP_RETURNABLE
Definition: amapi.h:43
@ AMPROP_BITMAP_SCAN
Definition: amapi.h:48
bytea *(* amoptions_function)(Datum reloptions, bool validate)
Definition: amapi.h:151
void(* aminitparallelscan_function)(void *target)
Definition: amapi.h:208
void(* ammarkpos_function)(IndexScanDesc scan)
Definition: amapi.h:195
struct OpFamilyMember OpFamilyMember
IndexBuildResult *(* ambuild_function)(Relation heapRelation, Relation indexRelation, struct IndexInfo *indexInfo)
Definition: amapi.h:99
void(* aminsertcleanup_function)(Relation indexRelation, struct IndexInfo *indexInfo)
Definition: amapi.h:117
struct IndexAmRoutine IndexAmRoutine
char *(* ambuildphasename_function)(int64 phasenum)
Definition: amapi.h:160
void(* amrescan_function)(IndexScanDesc scan, ScanKey keys, int nkeys, ScanKey orderbys, int norderbys)
Definition: amapi.h:177
static Datum values[MAXATTR]
Definition: bootstrap.c:150
unsigned short uint16
Definition: c.h:505
unsigned char bool
Definition: c.h:459
unsigned char uint8
Definition: c.h:504
size_t Size
Definition: c.h:596
bool(* IndexBulkDeleteCallback)(ItemPointer itemptr, void *state)
Definition: genam.h:87
IndexUniqueCheck
Definition: genam.h:116
struct IndexScanDescData * IndexScanDesc
Definition: genam.h:90
double Cost
Definition: nodes.h:251
NodeTag
Definition: nodes.h:27
double Selectivity
Definition: nodes.h:250
uintptr_t Datum
Definition: postgres.h:64
unsigned int Oid
Definition: postgres_ext.h:31
tree ctl root
Definition: radixtree.h:1886
static const struct fns functions
Definition: regcomp.c:356
ScanDirection
Definition: sdir.h:25
ambuildphasename_function ambuildphasename
Definition: amapi.h:285
ambuildempty_function ambuildempty
Definition: amapi.h:275
amvacuumcleanup_function amvacuumcleanup
Definition: amapi.h:279
bool amclusterable
Definition: amapi.h:249
amoptions_function amoptions
Definition: amapi.h:283
amestimateparallelscan_function amestimateparallelscan
Definition: amapi.h:297
amrestrpos_function amrestrpos
Definition: amapi.h:294
aminsert_function aminsert
Definition: amapi.h:276
amendscan_function amendscan
Definition: amapi.h:292
uint16 amoptsprocnum
Definition: amapi.h:229
amparallelrescan_function amparallelrescan
Definition: amapi.h:299
Oid amkeytype
Definition: amapi.h:265
bool ampredlocks
Definition: amapi.h:251
uint16 amsupport
Definition: amapi.h:227
amcostestimate_function amcostestimate
Definition: amapi.h:281
bool amcanorderbyop
Definition: amapi.h:233
amadjustmembers_function amadjustmembers
Definition: amapi.h:287
ambuild_function ambuild
Definition: amapi.h:274
bool amstorage
Definition: amapi.h:247
uint16 amstrategies
Definition: amapi.h:225
bool amoptionalkey
Definition: amapi.h:241
amgettuple_function amgettuple
Definition: amapi.h:290
amcanreturn_function amcanreturn
Definition: amapi.h:280
bool amcanunique
Definition: amapi.h:237
amgetbitmap_function amgetbitmap
Definition: amapi.h:291
amproperty_function amproperty
Definition: amapi.h:284
ambulkdelete_function ambulkdelete
Definition: amapi.h:278
bool amsearcharray
Definition: amapi.h:243
bool amsummarizing
Definition: amapi.h:261
amvalidate_function amvalidate
Definition: amapi.h:286
ammarkpos_function ammarkpos
Definition: amapi.h:293
bool amcanmulticol
Definition: amapi.h:239
bool amusemaintenanceworkmem
Definition: amapi.h:259
ambeginscan_function ambeginscan
Definition: amapi.h:288
bool amcanparallel
Definition: amapi.h:253
amrescan_function amrescan
Definition: amapi.h:289
bool amcanorder
Definition: amapi.h:231
bool amcanbuildparallel
Definition: amapi.h:255
aminitparallelscan_function aminitparallelscan
Definition: amapi.h:298
uint8 amparallelvacuumoptions
Definition: amapi.h:263
aminsertcleanup_function aminsertcleanup
Definition: amapi.h:277
bool amcanbackward
Definition: amapi.h:235
amgettreeheight_function amgettreeheight
Definition: amapi.h:282
NodeTag type
Definition: amapi.h:219
bool amcaninclude
Definition: amapi.h:257
bool amsearchnulls
Definition: amapi.h:245
Path path
Definition: pathnodes.h:1719
Definition: pg_list.h:54
Oid refobjid
Definition: amapi.h:90
Oid lefttype
Definition: amapi.h:85
bool ref_is_family
Definition: amapi.h:89
Oid righttype
Definition: amapi.h:86
int number
Definition: amapi.h:84
Oid object
Definition: amapi.h:83
bool is_func
Definition: amapi.h:82
bool ref_is_hard
Definition: amapi.h:88
Oid sortfamily
Definition: amapi.h:87
Definition: c.h:678
static void callback(struct sockaddr *addr, struct sockaddr *mask, void *unused)
Definition: test_ifaddrs.c:46