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 /* parse index reloptions */
144 typedef bytea *(*amoptions_function) (Datum reloptions,
145  bool validate);
146 
147 /* report AM, index, or index column property */
148 typedef bool (*amproperty_function) (Oid index_oid, int attno,
149  IndexAMProperty prop, const char *propname,
150  bool *res, bool *isnull);
151 
152 /* name of phase as used in progress reporting */
153 typedef char *(*ambuildphasename_function) (int64 phasenum);
154 
155 /* validate definition of an opclass for this AM */
156 typedef bool (*amvalidate_function) (Oid opclassoid);
157 
158 /* validate operators and support functions to be added to an opclass/family */
159 typedef void (*amadjustmembers_function) (Oid opfamilyoid,
160  Oid opclassoid,
161  List *operators,
162  List *functions);
163 
164 /* prepare for index scan */
165 typedef IndexScanDesc (*ambeginscan_function) (Relation indexRelation,
166  int nkeys,
167  int norderbys);
168 
169 /* (re)start index scan */
170 typedef void (*amrescan_function) (IndexScanDesc scan,
171  ScanKey keys,
172  int nkeys,
173  ScanKey orderbys,
174  int norderbys);
175 
176 /* next valid tuple */
178  ScanDirection direction);
179 
180 /* fetch all valid tuples */
181 typedef int64 (*amgetbitmap_function) (IndexScanDesc scan,
182  TIDBitmap *tbm);
183 
184 /* end index scan */
185 typedef void (*amendscan_function) (IndexScanDesc scan);
186 
187 /* mark current scan position */
188 typedef void (*ammarkpos_function) (IndexScanDesc scan);
189 
190 /* restore marked scan position */
191 typedef void (*amrestrpos_function) (IndexScanDesc scan);
192 
193 /*
194  * Callback function signatures - for parallel index scans.
195  */
196 
197 /* estimate size of parallel scan descriptor */
198 typedef Size (*amestimateparallelscan_function) (int nkeys, int norderbys);
199 
200 /* prepare for parallel index scan */
201 typedef void (*aminitparallelscan_function) (void *target);
202 
203 /* (re)start parallel index scan */
205 
206 /*
207  * API struct for an index AM. Note this must be stored in a single palloc'd
208  * chunk of memory.
209  */
210 typedef struct IndexAmRoutine
211 {
213 
214  /*
215  * Total number of strategies (operators) by which we can traverse/search
216  * this AM. Zero if AM does not have a fixed set of strategy assignments.
217  */
219  /* total number of support functions that this AM uses */
221  /* opclass options support function number or 0 */
223  /* does AM support ORDER BY indexed column's value? */
225  /* does AM support ORDER BY result of an operator on indexed column? */
227  /* does AM support backward scanning? */
229  /* does AM support UNIQUE indexes? */
231  /* does AM support multi-column indexes? */
233  /* does AM require scans to have a constraint on the first index column? */
235  /* does AM handle ScalarArrayOpExpr quals? */
237  /* does AM handle IS NULL/IS NOT NULL quals? */
239  /* can index storage data type differ from column data type? */
240  bool amstorage;
241  /* can an index of this type be clustered on? */
243  /* does AM handle predicate locks? */
245  /* does AM support parallel scan? */
247  /* does AM support parallel build? */
249  /* does AM support columns included with clause INCLUDE? */
251  /* does AM use maintenance_work_mem? */
253  /* does AM store tuple information only at block granularity? */
255  /* OR of parallel vacuum flags. See vacuum.h for flags. */
257  /* type of data stored in index, or InvalidOid if variable */
259 
260  /*
261  * If you add new properties to either the above or the below lists, then
262  * they should also (usually) be exposed via the property API (see
263  * IndexAMProperty at the top of the file, and utils/adt/amutils.c).
264  */
265 
266  /* interface functions */
276  amproperty_function amproperty; /* can be NULL */
282  amgettuple_function amgettuple; /* can be NULL */
285  ammarkpos_function ammarkpos; /* can be NULL */
286  amrestrpos_function amrestrpos; /* can be NULL */
287 
288  /* interface functions to support parallel index scans */
293 
294 
295 /* Functions in access/index/amapi.c */
296 extern IndexAmRoutine *GetIndexAmRoutine(Oid amhandler);
297 extern IndexAmRoutine *GetIndexAmRoutineByAmId(Oid amoid, bool noerror);
298 
299 #endif /* AMAPI_H */
void(* amparallelrescan_function)(IndexScanDesc scan)
Definition: amapi.h:204
Size(* amestimateparallelscan_function)(int nkeys, int norderbys)
Definition: amapi.h:198
IndexScanDesc(* ambeginscan_function)(Relation indexRelation, int nkeys, int norderbys)
Definition: amapi.h:165
void(* amadjustmembers_function)(Oid opfamilyoid, Oid opclassoid, List *operators, List *functions)
Definition: amapi.h:159
bool(* amproperty_function)(Oid index_oid, int attno, IndexAMProperty prop, const char *propname, bool *res, bool *isnull)
Definition: amapi.h:148
bool(* amvalidate_function)(Oid opclassoid)
Definition: amapi.h:156
void(* amendscan_function)(IndexScanDesc scan)
Definition: amapi.h:185
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:181
void(* amrestrpos_function)(IndexScanDesc scan)
Definition: amapi.h:191
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:177
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:144
void(* aminitparallelscan_function)(void *target)
Definition: amapi.h:201
void(* ammarkpos_function)(IndexScanDesc scan)
Definition: amapi.h:188
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:153
void(* amrescan_function)(IndexScanDesc scan, ScanKey keys, int nkeys, ScanKey orderbys, int norderbys)
Definition: amapi.h:170
static Datum values[MAXATTR]
Definition: bootstrap.c:152
unsigned short uint16
Definition: c.h:505
unsigned char bool
Definition: c.h:456
unsigned char uint8
Definition: c.h:504
size_t Size
Definition: c.h:605
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:1884
static const struct fns functions
Definition: regcomp.c:356
ScanDirection
Definition: sdir.h:25
ambuildphasename_function ambuildphasename
Definition: amapi.h:277
ambuildempty_function ambuildempty
Definition: amapi.h:268
amvacuumcleanup_function amvacuumcleanup
Definition: amapi.h:272
bool amclusterable
Definition: amapi.h:242
amoptions_function amoptions
Definition: amapi.h:275
amestimateparallelscan_function amestimateparallelscan
Definition: amapi.h:289
amrestrpos_function amrestrpos
Definition: amapi.h:286
aminsert_function aminsert
Definition: amapi.h:269
amendscan_function amendscan
Definition: amapi.h:284
uint16 amoptsprocnum
Definition: amapi.h:222
amparallelrescan_function amparallelrescan
Definition: amapi.h:291
Oid amkeytype
Definition: amapi.h:258
bool ampredlocks
Definition: amapi.h:244
uint16 amsupport
Definition: amapi.h:220
amcostestimate_function amcostestimate
Definition: amapi.h:274
bool amcanorderbyop
Definition: amapi.h:226
amadjustmembers_function amadjustmembers
Definition: amapi.h:279
ambuild_function ambuild
Definition: amapi.h:267
bool amstorage
Definition: amapi.h:240
uint16 amstrategies
Definition: amapi.h:218
bool amoptionalkey
Definition: amapi.h:234
amgettuple_function amgettuple
Definition: amapi.h:282
amcanreturn_function amcanreturn
Definition: amapi.h:273
bool amcanunique
Definition: amapi.h:230
amgetbitmap_function amgetbitmap
Definition: amapi.h:283
amproperty_function amproperty
Definition: amapi.h:276
ambulkdelete_function ambulkdelete
Definition: amapi.h:271
bool amsearcharray
Definition: amapi.h:236
bool amsummarizing
Definition: amapi.h:254
amvalidate_function amvalidate
Definition: amapi.h:278
ammarkpos_function ammarkpos
Definition: amapi.h:285
bool amcanmulticol
Definition: amapi.h:232
bool amusemaintenanceworkmem
Definition: amapi.h:252
ambeginscan_function ambeginscan
Definition: amapi.h:280
bool amcanparallel
Definition: amapi.h:246
amrescan_function amrescan
Definition: amapi.h:281
bool amcanorder
Definition: amapi.h:224
bool amcanbuildparallel
Definition: amapi.h:248
aminitparallelscan_function aminitparallelscan
Definition: amapi.h:290
uint8 amparallelvacuumoptions
Definition: amapi.h:256
aminsertcleanup_function aminsertcleanup
Definition: amapi.h:270
bool amcanbackward
Definition: amapi.h:228
NodeTag type
Definition: amapi.h:212
bool amcaninclude
Definition: amapi.h:250
bool amsearchnulls
Definition: amapi.h:238
Path path
Definition: pathnodes.h:1698
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:687
static void callback(struct sockaddr *addr, struct sockaddr *mask, void *unused)
Definition: test_ifaddrs.c:46