Age Owner Branch data TLA Line data Source code
1 : : /*-------------------------------------------------------------------------
2 : : *
3 : : * indexam.c
4 : : * general index access method routines
5 : : *
6 : : * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7 : : * Portions Copyright (c) 1994, Regents of the University of California
8 : : *
9 : : *
10 : : * IDENTIFICATION
11 : : * src/backend/access/index/indexam.c
12 : : *
13 : : * INTERFACE ROUTINES
14 : : * index_open - open an index relation by relation OID
15 : : * index_close - close an index relation
16 : : * index_beginscan - start a scan of an index with amgettuple
17 : : * index_beginscan_bitmap - start a scan of an index with amgetbitmap
18 : : * index_rescan - restart a scan of an index
19 : : * index_endscan - end a scan
20 : : * index_insert - insert an index tuple into a relation
21 : : * index_markpos - mark a scan position
22 : : * index_restrpos - restore a scan position
23 : : * index_parallelscan_estimate - estimate shared memory for parallel scan
24 : : * index_parallelscan_initialize - initialize parallel scan
25 : : * index_parallelrescan - (re)start a parallel scan of an index
26 : : * index_beginscan_parallel - join parallel index scan
27 : : * index_getnext_tid - get the next TID from a scan
28 : : * index_fetch_heap - get the scan's next heap tuple
29 : : * index_getnext_slot - get the next tuple from a scan
30 : : * index_getbitmap - get all tuples from a scan
31 : : * index_bulk_delete - bulk deletion of index tuples
32 : : * index_vacuum_cleanup - post-deletion cleanup of an index
33 : : * index_can_return - does index support index-only scans?
34 : : * index_getprocid - get a support procedure OID
35 : : * index_getprocinfo - get a support procedure's lookup info
36 : : *
37 : : * NOTES
38 : : * This file contains the index_ routines which used
39 : : * to be a scattered collection of stuff in access/genam.
40 : : *
41 : : *-------------------------------------------------------------------------
42 : : */
43 : :
44 : : #include "postgres.h"
45 : :
46 : : #include "access/amapi.h"
47 : : #include "access/relation.h"
48 : : #include "access/reloptions.h"
49 : : #include "access/relscan.h"
50 : : #include "access/tableam.h"
51 : : #include "catalog/index.h"
52 : : #include "catalog/pg_type.h"
53 : : #include "nodes/execnodes.h"
54 : : #include "pgstat.h"
55 : : #include "storage/lmgr.h"
56 : : #include "storage/predicate.h"
57 : : #include "utils/ruleutils.h"
58 : : #include "utils/snapmgr.h"
59 : : #include "utils/syscache.h"
60 : :
61 : :
62 : : /* ----------------------------------------------------------------
63 : : * macros used in index_ routines
64 : : *
65 : : * Note: the ReindexIsProcessingIndex() check in RELATION_CHECKS is there
66 : : * to check that we don't try to scan or do retail insertions into an index
67 : : * that is currently being rebuilt or pending rebuild. This helps to catch
68 : : * things that don't work when reindexing system catalogs, as well as prevent
69 : : * user errors like index expressions that access their own tables. The check
70 : : * doesn't prevent the actual rebuild because we don't use RELATION_CHECKS
71 : : * when calling the index AM's ambuild routine, and there is no reason for
72 : : * ambuild to call its subsidiary routines through this file.
73 : : * ----------------------------------------------------------------
74 : : */
75 : : #define RELATION_CHECKS \
76 : : do { \
77 : : Assert(RelationIsValid(indexRelation)); \
78 : : Assert(PointerIsValid(indexRelation->rd_indam)); \
79 : : if (unlikely(ReindexIsProcessingIndex(RelationGetRelid(indexRelation)))) \
80 : : ereport(ERROR, \
81 : : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), \
82 : : errmsg("cannot access index \"%s\" while it is being reindexed", \
83 : : RelationGetRelationName(indexRelation)))); \
84 : : } while(0)
85 : :
86 : : #define SCAN_CHECKS \
87 : : ( \
88 : : AssertMacro(IndexScanIsValid(scan)), \
89 : : AssertMacro(RelationIsValid(scan->indexRelation)), \
90 : : AssertMacro(PointerIsValid(scan->indexRelation->rd_indam)) \
91 : : )
92 : :
93 : : #define CHECK_REL_PROCEDURE(pname) \
94 : : do { \
95 : : if (indexRelation->rd_indam->pname == NULL) \
96 : : elog(ERROR, "function \"%s\" is not defined for index \"%s\"", \
97 : : CppAsString(pname), RelationGetRelationName(indexRelation)); \
98 : : } while(0)
99 : :
100 : : #define CHECK_SCAN_PROCEDURE(pname) \
101 : : do { \
102 : : if (scan->indexRelation->rd_indam->pname == NULL) \
103 : : elog(ERROR, "function \"%s\" is not defined for index \"%s\"", \
104 : : CppAsString(pname), RelationGetRelationName(scan->indexRelation)); \
105 : : } while(0)
106 : :
107 : : static IndexScanDesc index_beginscan_internal(Relation indexRelation,
108 : : int nkeys, int norderbys, Snapshot snapshot,
109 : : ParallelIndexScanDesc pscan, bool temp_snap);
110 : : static inline void validate_relation_kind(Relation r);
111 : :
112 : :
113 : : /* ----------------------------------------------------------------
114 : : * index_ interface functions
115 : : * ----------------------------------------------------------------
116 : : */
117 : :
118 : : /* ----------------
119 : : * index_open - open an index relation by relation OID
120 : : *
121 : : * If lockmode is not "NoLock", the specified kind of lock is
122 : : * obtained on the index. (Generally, NoLock should only be
123 : : * used if the caller knows it has some appropriate lock on the
124 : : * index already.)
125 : : *
126 : : * An error is raised if the index does not exist.
127 : : *
128 : : * This is a convenience routine adapted for indexscan use.
129 : : * Some callers may prefer to use relation_open directly.
130 : : * ----------------
131 : : */
132 : : Relation
6467 tgl@sss.pgh.pa.us 133 :CBC 8401004 : index_open(Oid relationId, LOCKMODE lockmode)
134 : : {
135 : : Relation r;
136 : :
137 : 8401004 : r = relation_open(relationId, lockmode);
138 : :
87 michael@paquier.xyz 139 : 8400998 : validate_relation_kind(r);
140 : :
141 : 8400987 : return r;
142 : : }
143 : :
144 : : /* ----------------
145 : : * try_index_open - open an index relation by relation OID
146 : : *
147 : : * Same as index_open, except return NULL instead of failing
148 : : * if the relation does not exist.
149 : : * ----------------
150 : : */
151 : : Relation
152 : 1065 : try_index_open(Oid relationId, LOCKMODE lockmode)
153 : : {
154 : : Relation r;
155 : :
156 : 1065 : r = try_relation_open(relationId, lockmode);
157 : :
158 : : /* leave if index does not exist */
159 [ - + ]: 1065 : if (!r)
87 michael@paquier.xyz 160 :UBC 0 : return NULL;
161 : :
87 michael@paquier.xyz 162 :CBC 1065 : validate_relation_kind(r);
163 : :
8975 tgl@sss.pgh.pa.us 164 : 1065 : return r;
165 : : }
166 : :
167 : : /* ----------------
168 : : * index_close - close an index relation
169 : : *
170 : : * If lockmode is not "NoLock", we then release the specified lock.
171 : : *
172 : : * Note that it is often sensible to hold a lock beyond index_close;
173 : : * in that case, the lock is released automatically at xact end.
174 : : * ----------------
175 : : */
176 : : void
6467 177 : 8417229 : index_close(Relation relation, LOCKMODE lockmode)
178 : : {
179 : 8417229 : LockRelId relid = relation->rd_lockInfo.lockRelId;
180 : :
181 [ + - - + ]: 8417229 : Assert(lockmode >= NoLock && lockmode < MAX_LOCKMODES);
182 : :
183 : : /* The relcache does the real work... */
9716 bruce@momjian.us 184 : 8417229 : RelationClose(relation);
185 : :
6467 tgl@sss.pgh.pa.us 186 [ + + ]: 8417229 : if (lockmode != NoLock)
187 : 7681628 : UnlockRelationId(&relid, lockmode);
10141 scrappy@hub.org 188 : 8417229 : }
189 : :
190 : : /* ----------------
191 : : * validate_relation_kind - check the relation's kind
192 : : *
193 : : * Make sure relkind is an index or a partitioned index.
194 : : * ----------------
195 : : */
196 : : static inline void
87 michael@paquier.xyz 197 : 8402063 : validate_relation_kind(Relation r)
198 : : {
199 [ + + ]: 8402063 : if (r->rd_rel->relkind != RELKIND_INDEX &&
200 [ + + ]: 6357 : r->rd_rel->relkind != RELKIND_PARTITIONED_INDEX)
201 [ + - ]: 11 : ereport(ERROR,
202 : : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
203 : : errmsg("\"%s\" is not an index",
204 : : RelationGetRelationName(r))));
205 : 8402052 : }
206 : :
207 : :
208 : : /* ----------------
209 : : * index_insert - insert an index tuple into a relation
210 : : * ----------------
211 : : */
212 : : bool
8000 tgl@sss.pgh.pa.us 213 : 4063337 : index_insert(Relation indexRelation,
214 : : Datum *values,
215 : : bool *isnull,
216 : : ItemPointer heap_t_ctid,
217 : : Relation heapRelation,
218 : : IndexUniqueCheck checkUnique,
219 : : bool indexUnchanged,
220 : : IndexInfo *indexInfo)
221 : : {
9716 bruce@momjian.us 222 [ - + - + : 4063337 : RELATION_CHECKS;
- + - - ]
3010 tgl@sss.pgh.pa.us 223 [ - + - - ]: 4063337 : CHECK_REL_PROCEDURE(aminsert);
224 : :
1910 andres@anarazel.de 225 [ + + ]: 4063337 : if (!(indexRelation->rd_indam->ampredlocks))
4815 heikki.linnakangas@i 226 : 288294 : CheckForSerializableConflictIn(indexRelation,
227 : : (ItemPointer) NULL,
228 : : InvalidBlockNumber);
229 : :
1910 andres@anarazel.de 230 : 4063337 : return indexRelation->rd_indam->aminsert(indexRelation, values, isnull,
231 : : heap_t_ctid, heapRelation,
232 : : checkUnique, indexUnchanged,
233 : : indexInfo);
234 : : }
235 : :
236 : : /* -------------------------
237 : : * index_insert_cleanup - clean up after all index inserts are done
238 : : * -------------------------
239 : : */
240 : : void
141 tomas.vondra@postgre 241 :GNC 1485029 : index_insert_cleanup(Relation indexRelation,
242 : : IndexInfo *indexInfo)
243 : : {
244 [ - + - + : 1485029 : RELATION_CHECKS;
- + - - ]
245 [ - + ]: 1485029 : Assert(indexInfo);
246 : :
139 247 [ + + + + ]: 1485029 : if (indexRelation->rd_indam->aminsertcleanup && indexInfo->ii_AmCache)
141 248 : 542 : indexRelation->rd_indam->aminsertcleanup(indexInfo);
249 : 1485029 : }
250 : :
251 : : /*
252 : : * index_beginscan - start a scan of an index with amgettuple
253 : : *
254 : : * Caller must be holding suitable locks on the heap and the index.
255 : : */
256 : : IndexScanDesc
8000 tgl@sss.pgh.pa.us 257 :CBC 6200730 : index_beginscan(Relation heapRelation,
258 : : Relation indexRelation,
259 : : Snapshot snapshot,
260 : : int nkeys, int norderbys)
261 : : {
262 : : IndexScanDesc scan;
263 : :
495 akorotkov@postgresql 264 [ - + ]: 6200730 : Assert(snapshot != InvalidSnapshot);
265 : :
2637 rhaas@postgresql.org 266 : 6200730 : scan = index_beginscan_internal(indexRelation, nkeys, norderbys, snapshot, NULL, false);
267 : :
268 : : /*
269 : : * Save additional parameters into the scandesc. Everything else was set
270 : : * up by RelationGetIndexScan.
271 : : */
6958 tgl@sss.pgh.pa.us 272 : 6200730 : scan->heapRelation = heapRelation;
273 : 6200730 : scan->xs_snapshot = snapshot;
274 : :
275 : : /* prepare to fetch index matches from table */
1861 andres@anarazel.de 276 : 6200730 : scan->xs_heapfetch = table_index_fetch_begin(heapRelation);
277 : :
6958 tgl@sss.pgh.pa.us 278 : 6200730 : return scan;
279 : : }
280 : :
281 : : /*
282 : : * index_beginscan_bitmap - start a scan of an index with amgetbitmap
283 : : *
284 : : * As above, caller had better be holding some lock on the parent heap
285 : : * relation, even though it's not explicitly mentioned here.
286 : : */
287 : : IndexScanDesc
5848 288 : 7986 : index_beginscan_bitmap(Relation indexRelation,
289 : : Snapshot snapshot,
290 : : int nkeys)
291 : : {
292 : : IndexScanDesc scan;
293 : :
495 akorotkov@postgresql 294 [ - + ]: 7986 : Assert(snapshot != InvalidSnapshot);
295 : :
2637 rhaas@postgresql.org 296 : 7986 : scan = index_beginscan_internal(indexRelation, nkeys, 0, snapshot, NULL, false);
297 : :
298 : : /*
299 : : * Save additional parameters into the scandesc. Everything else was set
300 : : * up by RelationGetIndexScan.
301 : : */
6958 tgl@sss.pgh.pa.us 302 : 7986 : scan->xs_snapshot = snapshot;
303 : :
304 : 7986 : return scan;
305 : : }
306 : :
307 : : /*
308 : : * index_beginscan_internal --- common code for index_beginscan variants
309 : : */
310 : : static IndexScanDesc
311 : 6208905 : index_beginscan_internal(Relation indexRelation,
312 : : int nkeys, int norderbys, Snapshot snapshot,
313 : : ParallelIndexScanDesc pscan, bool temp_snap)
314 : : {
315 : : IndexScanDesc scan;
316 : :
9716 bruce@momjian.us 317 [ - + - + : 6208905 : RELATION_CHECKS;
- + - - ]
3010 tgl@sss.pgh.pa.us 318 [ - + - - ]: 6208905 : CHECK_REL_PROCEDURE(ambeginscan);
319 : :
1910 andres@anarazel.de 320 [ + + ]: 6208905 : if (!(indexRelation->rd_indam->ampredlocks))
4687 heikki.linnakangas@i 321 : 2312 : PredicateLockRelation(indexRelation, snapshot);
322 : :
323 : : /*
324 : : * We hold a reference count to the relcache entry throughout the scan.
325 : : */
6467 tgl@sss.pgh.pa.us 326 : 6208905 : RelationIncrementReferenceCount(indexRelation);
327 : :
328 : : /*
329 : : * Tell the AM to open a scan.
330 : : */
1910 andres@anarazel.de 331 : 6208905 : scan = indexRelation->rd_indam->ambeginscan(indexRelation, nkeys,
332 : : norderbys);
333 : : /* Initialize information for parallel scan. */
2637 rhaas@postgresql.org 334 : 6208905 : scan->parallel_scan = pscan;
335 : 6208905 : scan->xs_temp_snap = temp_snap;
336 : :
337 : 6208905 : return scan;
338 : : }
339 : :
340 : : /* ----------------
341 : : * index_rescan - (re)start a scan of an index
342 : : *
343 : : * During a restart, the caller may specify a new set of scankeys and/or
344 : : * orderbykeys; but the number of keys cannot differ from what index_beginscan
345 : : * was told. (Later we might relax that to "must not exceed", but currently
346 : : * the index AMs tend to assume that scan->numberOfKeys is what to believe.)
347 : : * To restart the scan without changing keys, pass NULL for the key arrays.
348 : : * (Of course, keys *must* be passed on the first call, unless
349 : : * scan->numberOfKeys is zero.)
350 : : * ----------------
351 : : */
352 : : void
4882 tgl@sss.pgh.pa.us 353 : 6426851 : index_rescan(IndexScanDesc scan,
354 : : ScanKey keys, int nkeys,
355 : : ScanKey orderbys, int norderbys)
356 : : {
9716 bruce@momjian.us 357 [ - + - + : 6426851 : SCAN_CHECKS;
- + ]
3010 tgl@sss.pgh.pa.us 358 [ - + - - ]: 6426851 : CHECK_SCAN_PROCEDURE(amrescan);
359 : :
4882 360 [ - + ]: 6426851 : Assert(nkeys == scan->numberOfKeys);
361 [ - + ]: 6426851 : Assert(norderbys == scan->numberOfOrderBys);
362 : :
363 : : /* Release resources (like buffer pins) from table accesses */
1861 andres@anarazel.de 364 [ + + ]: 6426851 : if (scan->xs_heapfetch)
365 : 6417011 : table_index_fetch_reset(scan->xs_heapfetch);
366 : :
2489 tgl@sss.pgh.pa.us 367 : 6426851 : scan->kill_prior_tuple = false; /* for safety */
1861 andres@anarazel.de 368 : 6426851 : scan->xs_heap_continue = false;
369 : :
1910 370 : 6426851 : scan->indexRelation->rd_indam->amrescan(scan, keys, nkeys,
371 : : orderbys, norderbys);
10141 scrappy@hub.org 372 : 6426851 : }
373 : :
374 : : /* ----------------
375 : : * index_endscan - end a scan
376 : : * ----------------
377 : : */
378 : : void
379 : 6208115 : index_endscan(IndexScanDesc scan)
380 : : {
9716 bruce@momjian.us 381 [ - + - + : 6208115 : SCAN_CHECKS;
- + ]
3010 tgl@sss.pgh.pa.us 382 [ - + - - ]: 6208115 : CHECK_SCAN_PROCEDURE(amendscan);
383 : :
384 : : /* Release resources (like buffer pins) from table accesses */
1861 andres@anarazel.de 385 [ + + ]: 6208115 : if (scan->xs_heapfetch)
386 : : {
387 : 6200176 : table_index_fetch_end(scan->xs_heapfetch);
388 : 6200176 : scan->xs_heapfetch = NULL;
389 : : }
390 : :
391 : : /* End the AM's scan */
1910 392 : 6208115 : scan->indexRelation->rd_indam->amendscan(scan);
393 : :
394 : : /* Release index refcount acquired by index_beginscan */
8000 tgl@sss.pgh.pa.us 395 : 6208115 : RelationDecrementReferenceCount(scan->indexRelation);
396 : :
2637 rhaas@postgresql.org 397 [ + + ]: 6208115 : if (scan->xs_temp_snap)
398 : 189 : UnregisterSnapshot(scan->xs_snapshot);
399 : :
400 : : /* Release the scan data structure itself */
8872 tgl@sss.pgh.pa.us 401 : 6208115 : IndexScanEnd(scan);
10141 scrappy@hub.org 402 : 6208115 : }
403 : :
404 : : /* ----------------
405 : : * index_markpos - mark a scan position
406 : : * ----------------
407 : : */
408 : : void
409 : 65039 : index_markpos(IndexScanDesc scan)
410 : : {
9716 bruce@momjian.us 411 [ - + - + : 65039 : SCAN_CHECKS;
- + ]
3010 tgl@sss.pgh.pa.us 412 [ - + - - ]: 65039 : CHECK_SCAN_PROCEDURE(ammarkpos);
413 : :
1910 andres@anarazel.de 414 : 65039 : scan->indexRelation->rd_indam->ammarkpos(scan);
10141 scrappy@hub.org 415 : 65039 : }
416 : :
417 : : /* ----------------
418 : : * index_restrpos - restore a scan position
419 : : *
420 : : * NOTE: this only restores the internal scan state of the index AM. See
421 : : * comments for ExecRestrPos().
422 : : *
423 : : * NOTE: For heap, in the presence of HOT chains, mark/restore only works
424 : : * correctly if the scan's snapshot is MVCC-safe; that ensures that there's at
425 : : * most one returnable tuple in each HOT chain, and so restoring the prior
426 : : * state at the granularity of the index AM is sufficient. Since the only
427 : : * current user of mark/restore functionality is nodeMergejoin.c, this
428 : : * effectively means that merge-join plans only work for MVCC snapshots. This
429 : : * could be fixed if necessary, but for now it seems unimportant.
430 : : * ----------------
431 : : */
432 : : void
433 : 27015 : index_restrpos(IndexScanDesc scan)
434 : : {
6051 tgl@sss.pgh.pa.us 435 [ - + - - ]: 27015 : Assert(IsMVCCSnapshot(scan->xs_snapshot));
436 : :
9716 bruce@momjian.us 437 [ - + - + : 27015 : SCAN_CHECKS;
- + ]
3010 tgl@sss.pgh.pa.us 438 [ - + - - ]: 27015 : CHECK_SCAN_PROCEDURE(amrestrpos);
439 : :
440 : : /* release resources (like buffer pins) from table accesses */
1861 andres@anarazel.de 441 [ + - ]: 27015 : if (scan->xs_heapfetch)
442 : 27015 : table_index_fetch_reset(scan->xs_heapfetch);
443 : :
2489 tgl@sss.pgh.pa.us 444 : 27015 : scan->kill_prior_tuple = false; /* for safety */
1861 andres@anarazel.de 445 : 27015 : scan->xs_heap_continue = false;
446 : :
1910 447 : 27015 : scan->indexRelation->rd_indam->amrestrpos(scan);
10141 scrappy@hub.org 448 : 27015 : }
449 : :
450 : : /*
451 : : * index_parallelscan_estimate - estimate shared memory for parallel scan
452 : : */
453 : : Size
8 pg@bowt.ie 454 :GNC 29 : index_parallelscan_estimate(Relation indexRelation, int nkeys, int norderbys,
455 : : Snapshot snapshot)
456 : : {
457 : : Size nbytes;
458 : :
495 akorotkov@postgresql 459 [ - + ]:CBC 29 : Assert(snapshot != InvalidSnapshot);
460 : :
2637 rhaas@postgresql.org 461 [ - + - + : 29 : RELATION_CHECKS;
- + - - ]
462 : :
463 : 29 : nbytes = offsetof(ParallelIndexScanDescData, ps_snapshot_data);
464 : 29 : nbytes = add_size(nbytes, EstimateSnapshotSpace(snapshot));
465 : 29 : nbytes = MAXALIGN(nbytes);
466 : :
467 : : /*
468 : : * If amestimateparallelscan is not provided, assume there is no
469 : : * AM-specific data needed. (It's hard to believe that could work, but
470 : : * it's easy enough to cater to it here.)
471 : : */
1910 andres@anarazel.de 472 [ + - ]: 29 : if (indexRelation->rd_indam->amestimateparallelscan != NULL)
2637 rhaas@postgresql.org 473 : 29 : nbytes = add_size(nbytes,
8 pg@bowt.ie 474 :GNC 29 : indexRelation->rd_indam->amestimateparallelscan(nkeys,
475 : : norderbys));
476 : :
2637 rhaas@postgresql.org 477 :CBC 29 : return nbytes;
478 : : }
479 : :
480 : : /*
481 : : * index_parallelscan_initialize - initialize parallel scan
482 : : *
483 : : * We initialize both the ParallelIndexScanDesc proper and the AM-specific
484 : : * information which follows it.
485 : : *
486 : : * This function calls access method specific initialization routine to
487 : : * initialize am specific information. Call this just once in the leader
488 : : * process; then, individual workers attach via index_beginscan_parallel.
489 : : */
490 : : void
491 : 29 : index_parallelscan_initialize(Relation heapRelation, Relation indexRelation,
492 : : Snapshot snapshot, ParallelIndexScanDesc target)
493 : : {
494 : : Size offset;
495 : :
495 akorotkov@postgresql 496 [ - + ]: 29 : Assert(snapshot != InvalidSnapshot);
497 : :
2637 rhaas@postgresql.org 498 [ - + - + : 29 : RELATION_CHECKS;
- + - - ]
499 : :
500 : 29 : offset = add_size(offsetof(ParallelIndexScanDescData, ps_snapshot_data),
501 : : EstimateSnapshotSpace(snapshot));
502 : 29 : offset = MAXALIGN(offset);
503 : :
504 : 29 : target->ps_relid = RelationGetRelid(heapRelation);
505 : 29 : target->ps_indexid = RelationGetRelid(indexRelation);
506 : 29 : target->ps_offset = offset;
507 : 29 : SerializeSnapshot(snapshot, target->ps_snapshot_data);
508 : :
509 : : /* aminitparallelscan is optional; assume no-op if not provided by AM */
1910 andres@anarazel.de 510 [ + - ]: 29 : if (indexRelation->rd_indam->aminitparallelscan != NULL)
511 : : {
512 : : void *amtarget;
513 : :
2637 rhaas@postgresql.org 514 : 29 : amtarget = OffsetToPointer(target, offset);
1910 andres@anarazel.de 515 : 29 : indexRelation->rd_indam->aminitparallelscan(amtarget);
516 : : }
2637 rhaas@postgresql.org 517 : 29 : }
518 : :
519 : : /* ----------------
520 : : * index_parallelrescan - (re)start a parallel scan of an index
521 : : * ----------------
522 : : */
523 : : void
524 : 12 : index_parallelrescan(IndexScanDesc scan)
525 : : {
526 [ - + - + : 12 : SCAN_CHECKS;
- + ]
527 : :
1861 andres@anarazel.de 528 [ + - ]: 12 : if (scan->xs_heapfetch)
529 : 12 : table_index_fetch_reset(scan->xs_heapfetch);
530 : :
531 : : /* amparallelrescan is optional; assume no-op if not provided by AM */
1910 532 [ + - ]: 12 : if (scan->indexRelation->rd_indam->amparallelrescan != NULL)
533 : 12 : scan->indexRelation->rd_indam->amparallelrescan(scan);
2637 rhaas@postgresql.org 534 : 12 : }
535 : :
536 : : /*
537 : : * index_beginscan_parallel - join parallel index scan
538 : : *
539 : : * Caller must be holding suitable locks on the heap and the index.
540 : : */
541 : : IndexScanDesc
542 : 189 : index_beginscan_parallel(Relation heaprel, Relation indexrel, int nkeys,
543 : : int norderbys, ParallelIndexScanDesc pscan)
544 : : {
545 : : Snapshot snapshot;
546 : : IndexScanDesc scan;
547 : :
548 [ - + ]: 189 : Assert(RelationGetRelid(heaprel) == pscan->ps_relid);
549 : 189 : snapshot = RestoreSnapshot(pscan->ps_snapshot_data);
550 : 189 : RegisterSnapshot(snapshot);
551 : 189 : scan = index_beginscan_internal(indexrel, nkeys, norderbys, snapshot,
552 : : pscan, true);
553 : :
554 : : /*
555 : : * Save additional parameters into the scandesc. Everything else was set
556 : : * up by index_beginscan_internal.
557 : : */
558 : 189 : scan->heapRelation = heaprel;
559 : 189 : scan->xs_snapshot = snapshot;
560 : :
561 : : /* prepare to fetch index matches from table */
1861 andres@anarazel.de 562 : 189 : scan->xs_heapfetch = table_index_fetch_begin(heaprel);
563 : :
2637 rhaas@postgresql.org 564 : 189 : return scan;
565 : : }
566 : :
567 : : /* ----------------
568 : : * index_getnext_tid - get the next TID from a scan
569 : : *
570 : : * The result is the next TID satisfying the scan keys,
571 : : * or NULL if no more matching tuples exist.
572 : : * ----------------
573 : : */
574 : : ItemPointer
4573 tgl@sss.pgh.pa.us 575 : 15468983 : index_getnext_tid(IndexScanDesc scan, ScanDirection direction)
576 : : {
577 : : bool found;
578 : :
579 [ - + - + : 15468983 : SCAN_CHECKS;
- + ]
3010 580 [ - + - - ]: 15468983 : CHECK_SCAN_PROCEDURE(amgettuple);
581 : :
582 : : /* XXX: we should assert that a snapshot is pushed or registered */
1341 andres@anarazel.de 583 [ - + ]: 15468983 : Assert(TransactionIdIsValid(RecentXmin));
584 : :
585 : : /*
586 : : * The AM's amgettuple proc finds the next index entry matching the scan
587 : : * keys, and puts the TID into scan->xs_heaptid. It should also set
588 : : * scan->xs_recheck and possibly scan->xs_itup/scan->xs_hitup, though we
589 : : * pay no attention to those fields here.
590 : : */
1910 591 : 15468983 : found = scan->indexRelation->rd_indam->amgettuple(scan, direction);
592 : :
593 : : /* Reset kill flag immediately for safety */
4573 tgl@sss.pgh.pa.us 594 : 15468982 : scan->kill_prior_tuple = false;
1861 andres@anarazel.de 595 : 15468982 : scan->xs_heap_continue = false;
596 : :
597 : : /* If we're out of index entries, we're done */
4573 tgl@sss.pgh.pa.us 598 [ + + ]: 15468982 : if (!found)
599 : : {
600 : : /* release resources (like buffer pins) from table accesses */
1861 andres@anarazel.de 601 [ + - ]: 2914695 : if (scan->xs_heapfetch)
602 : 2914695 : table_index_fetch_reset(scan->xs_heapfetch);
603 : :
4573 tgl@sss.pgh.pa.us 604 : 2914695 : return NULL;
605 : : }
1861 andres@anarazel.de 606 [ - + ]: 12554287 : Assert(ItemPointerIsValid(&scan->xs_heaptid));
607 : :
4573 tgl@sss.pgh.pa.us 608 [ + + - + : 12554287 : pgstat_count_index_tuples(scan->indexRelation, 1);
+ + ]
609 : :
610 : : /* Return the TID of the tuple we found. */
1861 andres@anarazel.de 611 : 12554287 : return &scan->xs_heaptid;
612 : : }
613 : :
614 : : /* ----------------
615 : : * index_fetch_heap - get the scan's next heap tuple
616 : : *
617 : : * The result is a visible heap tuple associated with the index TID most
618 : : * recently fetched by index_getnext_tid, or NULL if no more matching tuples
619 : : * exist. (There can be more than one matching tuple because of HOT chains,
620 : : * although when using an MVCC snapshot it should be impossible for more than
621 : : * one such tuple to exist.)
622 : : *
623 : : * On success, the buffer containing the heap tup is pinned (the pin will be
624 : : * dropped in a future index_getnext_tid, index_fetch_heap or index_endscan
625 : : * call).
626 : : *
627 : : * Note: caller must check scan->xs_recheck, and perform rechecking of the
628 : : * scan keys if required. We do not do that here because we don't have
629 : : * enough information to do it efficiently in the general case.
630 : : * ----------------
631 : : */
632 : : bool
633 : 10924233 : index_fetch_heap(IndexScanDesc scan, TupleTableSlot *slot)
634 : : {
4675 rhaas@postgresql.org 635 : 10924233 : bool all_dead = false;
636 : : bool found;
637 : :
1861 andres@anarazel.de 638 : 10924233 : found = table_index_fetch_tuple(scan->xs_heapfetch, &scan->xs_heaptid,
639 : : scan->xs_snapshot, slot,
640 : : &scan->xs_heap_continue, &all_dead);
641 : :
642 [ + + ]: 10924228 : if (found)
4573 tgl@sss.pgh.pa.us 643 [ + + - + : 10452722 : pgstat_count_heap_fetch(scan->indexRelation);
+ + ]
644 : :
645 : : /*
646 : : * If we scanned a whole HOT chain and found only dead tuples, tell index
647 : : * AM to kill its entry for that TID (this will take effect in the next
648 : : * amgettuple call, in index_getnext_tid). We do not do this when in
649 : : * recovery because it may violate MVCC to do so. See comments in
650 : : * RelationGetIndexScan().
651 : : */
652 [ + + ]: 10924228 : if (!scan->xactStartedInRecovery)
653 : 10755741 : scan->kill_prior_tuple = all_dead;
654 : :
1861 andres@anarazel.de 655 : 10924228 : return found;
656 : : }
657 : :
658 : : /* ----------------
659 : : * index_getnext_slot - get the next tuple from a scan
660 : : *
661 : : * The result is true if a tuple satisfying the scan keys and the snapshot was
662 : : * found, false otherwise. The tuple is stored in the specified slot.
663 : : *
664 : : * On success, resources (like buffer pins) are likely to be held, and will be
665 : : * dropped by a future index_getnext_tid, index_fetch_heap or index_endscan
666 : : * call).
667 : : *
668 : : * Note: caller must check scan->xs_recheck, and perform rechecking of the
669 : : * scan keys if required. We do not do that here because we don't have
670 : : * enough information to do it efficiently in the general case.
671 : : * ----------------
672 : : */
673 : : bool
674 : 12333039 : index_getnext_slot(IndexScanDesc scan, ScanDirection direction, TupleTableSlot *slot)
675 : : {
676 : : for (;;)
677 : : {
678 [ + + ]: 12733769 : if (!scan->xs_heap_continue)
679 : : {
680 : : ItemPointer tid;
681 : :
682 : : /* Time to fetch the next TID from the index */
4573 tgl@sss.pgh.pa.us 683 : 12661883 : tid = index_getnext_tid(scan, direction);
684 : :
685 : : /* If we're out of index entries, we're done */
686 [ + + ]: 12661882 : if (tid == NULL)
6051 687 : 2874276 : break;
688 : :
1861 andres@anarazel.de 689 [ - + ]: 9787606 : Assert(ItemPointerEquals(tid, &scan->xs_heaptid));
690 : : }
691 : :
692 : : /*
693 : : * Fetch the next (or only) visible heap tuple for this index entry.
694 : : * If we don't find anything, loop around and grab the next TID from
695 : : * the index.
696 : : */
697 [ - + ]: 9859492 : Assert(ItemPointerIsValid(&scan->xs_heaptid));
698 [ + + ]: 9859492 : if (index_fetch_heap(scan, slot))
699 : 9458757 : return true;
700 : : }
701 : :
702 : 2874276 : return false;
703 : : }
704 : :
705 : : /* ----------------
706 : : * index_getbitmap - get all tuples at once from an index scan
707 : : *
708 : : * Adds the TIDs of all heap tuples satisfying the scan keys to a bitmap.
709 : : * Since there's no interlock between the index scan and the eventual heap
710 : : * access, this is only safe to use with MVCC-based snapshots: the heap
711 : : * item slot could have been replaced by a newer tuple by the time we get
712 : : * to it.
713 : : *
714 : : * Returns the number of matching tuples found. (Note: this might be only
715 : : * approximate, so it should only be used for statistical purposes.)
716 : : * ----------------
717 : : */
718 : : int64
5848 tgl@sss.pgh.pa.us 719 : 9364 : index_getbitmap(IndexScanDesc scan, TIDBitmap *bitmap)
720 : : {
721 : : int64 ntids;
722 : :
6958 723 [ - + - + : 9364 : SCAN_CHECKS;
- + ]
3010 724 [ - + - - ]: 9364 : CHECK_SCAN_PROCEDURE(amgetbitmap);
725 : :
726 : : /* just make sure this is false... */
6958 727 : 9364 : scan->kill_prior_tuple = false;
728 : :
729 : : /*
730 : : * have the am's getbitmap proc do all the work.
731 : : */
1910 andres@anarazel.de 732 : 9364 : ntids = scan->indexRelation->rd_indam->amgetbitmap(scan, bitmap);
733 : :
5848 tgl@sss.pgh.pa.us 734 [ - + - - : 9364 : pgstat_count_index_tuples(scan->indexRelation, ntids);
+ - ]
735 : :
736 : 9364 : return ntids;
737 : : }
738 : :
739 : : /* ----------------
740 : : * index_bulk_delete - do mass deletion of index entries
741 : : *
742 : : * callback routine tells whether a given main-heap tuple is
743 : : * to be deleted
744 : : *
745 : : * return value is an optional palloc'd struct of statistics
746 : : * ----------------
747 : : */
748 : : IndexBulkDeleteResult *
6557 749 : 1331 : index_bulk_delete(IndexVacuumInfo *info,
750 : : IndexBulkDeleteResult *istat,
751 : : IndexBulkDeleteCallback callback,
752 : : void *callback_state)
753 : : {
754 : 1331 : Relation indexRelation = info->index;
755 : :
8309 756 [ - + - + : 1331 : RELATION_CHECKS;
- + - - ]
3010 757 [ - + - - ]: 1331 : CHECK_REL_PROCEDURE(ambulkdelete);
758 : :
1105 pg@bowt.ie 759 : 1331 : return indexRelation->rd_indam->ambulkdelete(info, istat,
760 : : callback, callback_state);
761 : : }
762 : :
763 : : /* ----------------
764 : : * index_vacuum_cleanup - do post-deletion cleanup of an index
765 : : *
766 : : * return value is an optional palloc'd struct of statistics
767 : : * ----------------
768 : : */
769 : : IndexBulkDeleteResult *
6557 tgl@sss.pgh.pa.us 770 : 101349 : index_vacuum_cleanup(IndexVacuumInfo *info,
771 : : IndexBulkDeleteResult *istat)
772 : : {
773 : 101349 : Relation indexRelation = info->index;
774 : :
7722 775 [ - + - + : 101349 : RELATION_CHECKS;
- + - - ]
3010 776 [ - + - - ]: 101349 : CHECK_REL_PROCEDURE(amvacuumcleanup);
777 : :
1105 pg@bowt.ie 778 : 101349 : return indexRelation->rd_indam->amvacuumcleanup(info, istat);
779 : : }
780 : :
781 : : /* ----------------
782 : : * index_can_return
783 : : *
784 : : * Does the index access method support index-only scans for the given
785 : : * column?
786 : : * ----------------
787 : : */
788 : : bool
3307 heikki.linnakangas@i 789 : 594302 : index_can_return(Relation indexRelation, int attno)
790 : : {
4501 tgl@sss.pgh.pa.us 791 [ - + - + : 594302 : RELATION_CHECKS;
- + - - ]
792 : :
793 : : /* amcanreturn is optional; assume false if not provided by AM */
1910 andres@anarazel.de 794 [ + + ]: 594302 : if (indexRelation->rd_indam->amcanreturn == NULL)
4501 tgl@sss.pgh.pa.us 795 : 136409 : return false;
796 : :
1910 andres@anarazel.de 797 : 457893 : return indexRelation->rd_indam->amcanreturn(indexRelation, attno);
798 : : }
799 : :
800 : : /* ----------------
801 : : * index_getprocid
802 : : *
803 : : * Index access methods typically require support routines that are
804 : : * not directly the implementation of any WHERE-clause query operator
805 : : * and so cannot be kept in pg_amop. Instead, such routines are kept
806 : : * in pg_amproc. These registered procedure OIDs are assigned numbers
807 : : * according to a convention established by the access method.
808 : : * The general index code doesn't know anything about the routines
809 : : * involved; it just builds an ordered list of them for
810 : : * each attribute on which an index is defined.
811 : : *
812 : : * As of Postgres 8.3, support routines within an operator family
813 : : * are further subdivided by the "left type" and "right type" of the
814 : : * query operator(s) that they support. The "default" functions for a
815 : : * particular indexed attribute are those with both types equal to
816 : : * the index opclass' opcintype (note that this is subtly different
817 : : * from the indexed attribute's own type: it may be a binary-compatible
818 : : * type instead). Only the default functions are stored in relcache
819 : : * entries --- access methods can use the syscache to look up non-default
820 : : * functions.
821 : : *
822 : : * This routine returns the requested default procedure OID for a
823 : : * particular indexed attribute.
824 : : * ----------------
825 : : */
826 : : RegProcedure
10141 scrappy@hub.org 827 : 929335 : index_getprocid(Relation irel,
828 : : AttrNumber attnum,
829 : : uint16 procnum)
830 : : {
831 : : RegProcedure *loc;
832 : : int nproc;
833 : : int procindex;
834 : :
1910 andres@anarazel.de 835 : 929335 : nproc = irel->rd_indam->amsupport;
836 : :
1476 akorotkov@postgresql 837 [ + - - + ]: 929335 : Assert(procnum > 0 && procnum <= (uint16) nproc);
838 : :
839 : 929335 : procindex = (nproc * (attnum - 1)) + (procnum - 1);
840 : :
9716 bruce@momjian.us 841 : 929335 : loc = irel->rd_support;
842 : :
843 [ - + ]: 929335 : Assert(loc != NULL);
844 : :
8226 tgl@sss.pgh.pa.us 845 : 929335 : return loc[procindex];
846 : : }
847 : :
848 : : /* ----------------
849 : : * index_getprocinfo
850 : : *
851 : : * This routine allows index AMs to keep fmgr lookup info for
852 : : * support procs in the relcache. As above, only the "default"
853 : : * functions for any particular indexed attribute are cached.
854 : : *
855 : : * Note: the return value points into cached data that will be lost during
856 : : * any relcache rebuild! Therefore, either use the callinfo right away,
857 : : * or save it only after having acquired some type of lock on the index rel.
858 : : * ----------------
859 : : */
860 : : FmgrInfo *
861 : 21354747 : index_getprocinfo(Relation irel,
862 : : AttrNumber attnum,
863 : : uint16 procnum)
864 : : {
865 : : FmgrInfo *locinfo;
866 : : int nproc;
867 : : int optsproc;
868 : : int procindex;
869 : :
1910 andres@anarazel.de 870 : 21354747 : nproc = irel->rd_indam->amsupport;
1476 akorotkov@postgresql 871 : 21354747 : optsproc = irel->rd_indam->amoptsprocnum;
872 : :
873 [ + - - + ]: 21354747 : Assert(procnum > 0 && procnum <= (uint16) nproc);
874 : :
875 : 21354747 : procindex = (nproc * (attnum - 1)) + (procnum - 1);
876 : :
8226 tgl@sss.pgh.pa.us 877 : 21354747 : locinfo = irel->rd_supportinfo;
878 : :
879 [ - + ]: 21354747 : Assert(locinfo != NULL);
880 : :
881 : 21354747 : locinfo += procindex;
882 : :
883 : : /* Initialize the lookup info if first time through */
884 [ + + ]: 21354747 : if (locinfo->fn_oid == InvalidOid)
885 : : {
886 : 494518 : RegProcedure *loc = irel->rd_support;
887 : : RegProcedure procId;
888 : :
889 [ - + ]: 494518 : Assert(loc != NULL);
890 : :
8033 891 : 494518 : procId = loc[procindex];
892 : :
893 : : /*
894 : : * Complain if function was not found during IndexSupportInitialize.
895 : : * This should not happen unless the system tables contain bogus
896 : : * entries for the index opclass. (If an AM wants to allow a support
897 : : * function to be optional, it can use index_getprocid.)
898 : : */
899 [ - + ]: 494518 : if (!RegProcedureIsValid(procId))
7573 tgl@sss.pgh.pa.us 900 [ # # ]:UBC 0 : elog(ERROR, "missing support function %d for attribute %d of index \"%s\"",
901 : : procnum, attnum, RelationGetRelationName(irel));
902 : :
8033 tgl@sss.pgh.pa.us 903 :CBC 494518 : fmgr_info_cxt(procId, locinfo, irel->rd_indexcxt);
904 : :
1476 akorotkov@postgresql 905 [ + + ]: 494518 : if (procnum != optsproc)
906 : : {
907 : : /* Initialize locinfo->fn_expr with opclass options Const */
908 : 493494 : bytea **attoptions = RelationGetIndexAttOptions(irel, false);
909 : 493494 : MemoryContext oldcxt = MemoryContextSwitchTo(irel->rd_indexcxt);
910 : :
911 : 493494 : set_fn_opclass_options(locinfo, attoptions[attnum - 1]);
912 : :
913 : 493494 : MemoryContextSwitchTo(oldcxt);
914 : : }
915 : : }
916 : :
8226 tgl@sss.pgh.pa.us 917 : 21354747 : return locinfo;
918 : : }
919 : :
920 : : /* ----------------
921 : : * index_store_float8_orderby_distances
922 : : *
923 : : * Convert AM distance function's results (that can be inexact)
924 : : * to ORDER BY types and save them into xs_orderbyvals/xs_orderbynulls
925 : : * for a possible recheck.
926 : : * ----------------
927 : : */
928 : : void
2034 akorotkov@postgresql 929 : 182300 : index_store_float8_orderby_distances(IndexScanDesc scan, Oid *orderByTypes,
930 : : IndexOrderByDistance *distances,
931 : : bool recheckOrderBy)
932 : : {
933 : : int i;
934 : :
1668 935 [ + + - + ]: 182300 : Assert(distances || !recheckOrderBy);
936 : :
937 : 182300 : scan->xs_recheckorderby = recheckOrderBy;
938 : :
2034 939 [ + + ]: 364609 : for (i = 0; i < scan->numberOfOrderBys; i++)
940 : : {
941 [ + + ]: 182309 : if (orderByTypes[i] == FLOAT8OID)
942 : : {
943 : : #ifndef USE_FLOAT8_BYVAL
944 : : /* must free any old value to avoid memory leakage */
945 : : if (!scan->xs_orderbynulls[i])
946 : : pfree(DatumGetPointer(scan->xs_orderbyvals[i]));
947 : : #endif
1668 948 [ + + + + ]: 182244 : if (distances && !distances[i].isnull)
949 : : {
1669 950 : 182214 : scan->xs_orderbyvals[i] = Float8GetDatum(distances[i].value);
1668 951 : 182214 : scan->xs_orderbynulls[i] = false;
952 : : }
953 : : else
954 : : {
955 : 30 : scan->xs_orderbyvals[i] = (Datum) 0;
956 : 30 : scan->xs_orderbynulls[i] = true;
957 : : }
958 : : }
2034 959 [ + + ]: 65 : else if (orderByTypes[i] == FLOAT4OID)
960 : : {
961 : : /* convert distance function's result to ORDER BY type */
1668 962 [ + - + - ]: 35 : if (distances && !distances[i].isnull)
963 : : {
1669 964 : 35 : scan->xs_orderbyvals[i] = Float4GetDatum((float4) distances[i].value);
1668 965 : 35 : scan->xs_orderbynulls[i] = false;
966 : : }
967 : : else
968 : : {
1668 akorotkov@postgresql 969 :UBC 0 : scan->xs_orderbyvals[i] = (Datum) 0;
970 : 0 : scan->xs_orderbynulls[i] = true;
971 : : }
972 : : }
973 : : else
974 : : {
975 : : /*
976 : : * If the ordering operator's return value is anything else, we
977 : : * don't know how to convert the float8 bound calculated by the
978 : : * distance function to that. The executor won't actually need
979 : : * the order by values we return here, if there are no lossy
980 : : * results, so only insist on converting if the *recheck flag is
981 : : * set.
982 : : */
2034 akorotkov@postgresql 983 [ - + ]:CBC 30 : if (scan->xs_recheckorderby)
2034 akorotkov@postgresql 984 [ # # ]:UBC 0 : elog(ERROR, "ORDER BY operator must return float8 or float4 if the distance function is lossy");
2034 akorotkov@postgresql 985 :CBC 30 : scan->xs_orderbynulls[i] = true;
986 : : }
987 : : }
988 : 182300 : }
989 : :
990 : : /* ----------------
991 : : * index_opclass_options
992 : : *
993 : : * Parse opclass-specific options for index column.
994 : : * ----------------
995 : : */
996 : : bytea *
1476 997 : 489037 : index_opclass_options(Relation indrel, AttrNumber attnum, Datum attoptions,
998 : : bool validate)
999 : : {
1000 : 489037 : int amoptsprocnum = indrel->rd_indam->amoptsprocnum;
1001 : 489037 : Oid procid = InvalidOid;
1002 : : FmgrInfo *procinfo;
1003 : : local_relopts relopts;
1004 : :
1005 : : /* fetch options support procedure if specified */
1006 [ + + ]: 489037 : if (amoptsprocnum != 0)
1431 tgl@sss.pgh.pa.us 1007 : 489007 : procid = index_getprocid(indrel, attnum, amoptsprocnum);
1008 : :
1476 akorotkov@postgresql 1009 [ + + ]: 489037 : if (!OidIsValid(procid))
1010 : : {
1011 : : Oid opclass;
1012 : : Datum indclassDatum;
1013 : : oidvector *indclass;
1014 : :
1015 [ + + ]: 487648 : if (!DatumGetPointer(attoptions))
1431 tgl@sss.pgh.pa.us 1016 : 487645 : return NULL; /* ok, no options, no procedure */
1017 : :
1018 : : /*
1019 : : * Report an error if the opclass's options-parsing procedure does not
1020 : : * exist but the opclass options are specified.
1021 : : */
386 dgustafsson@postgres 1022 : 3 : indclassDatum = SysCacheGetAttrNotNull(INDEXRELID, indrel->rd_indextuple,
1023 : : Anum_pg_index_indclass);
1476 akorotkov@postgresql 1024 : 3 : indclass = (oidvector *) DatumGetPointer(indclassDatum);
1025 : 3 : opclass = indclass->values[attnum - 1];
1026 : :
1027 [ + - ]: 3 : ereport(ERROR,
1028 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1029 : : errmsg("operator class %s has no options",
1030 : : generate_opclass_name(opclass))));
1031 : : }
1032 : :
1033 : 1389 : init_local_reloptions(&relopts, 0);
1034 : :
1035 : 1389 : procinfo = index_getprocinfo(indrel, attnum, amoptsprocnum);
1036 : :
1037 : 1389 : (void) FunctionCall1(procinfo, PointerGetDatum(&relopts));
1038 : :
1039 : 1389 : return build_local_reloptions(&relopts, attoptions, validate);
1040 : : }
|