PostgreSQL Source Code  git master
brin_internal.h File Reference
#include "access/amapi.h"
#include "storage/bufpage.h"
#include "utils/typcache.h"
Include dependency graph for brin_internal.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  BrinOpcInfo
 
struct  BrinDesc
 

Macros

#define SizeofBrinOpcInfo(ncols)    (offsetof(BrinOpcInfo, oi_typcache) + sizeof(TypeCacheEntry *) * ncols)
 
#define BRIN_PROCNUM_OPCINFO   1
 
#define BRIN_PROCNUM_ADDVALUE   2
 
#define BRIN_PROCNUM_CONSISTENT   3
 
#define BRIN_PROCNUM_UNION   4
 
#define BRIN_MANDATORY_NPROCS   4
 
#define BRIN_PROCNUM_OPTIONS   5 /* optional */
 
#define BRIN_FIRST_OPTIONAL_PROCNUM   11
 
#define BRIN_LAST_OPTIONAL_PROCNUM   15
 
#define BRIN_elog(args)   ((void) 0)
 

Typedefs

typedef struct BrinOpcInfo BrinOpcInfo
 
typedef struct BrinDesc BrinDesc
 

Functions

BrinDescbrin_build_desc (Relation rel)
 
void brin_free_desc (BrinDesc *bdesc)
 
IndexBuildResultbrinbuild (Relation heap, Relation index, struct IndexInfo *indexInfo)
 
void brinbuildempty (Relation index)
 
bool brininsert (Relation idxRel, Datum *values, bool *nulls, ItemPointer heaptid, Relation heapRel, IndexUniqueCheck checkUnique, bool indexUnchanged, struct IndexInfo *indexInfo)
 
IndexScanDesc brinbeginscan (Relation r, int nkeys, int norderbys)
 
int64 bringetbitmap (IndexScanDesc scan, TIDBitmap *tbm)
 
void brinrescan (IndexScanDesc scan, ScanKey scankey, int nscankeys, ScanKey orderbys, int norderbys)
 
void brinendscan (IndexScanDesc scan)
 
IndexBulkDeleteResultbrinbulkdelete (IndexVacuumInfo *info, IndexBulkDeleteResult *stats, IndexBulkDeleteCallback callback, void *callback_state)
 
IndexBulkDeleteResultbrinvacuumcleanup (IndexVacuumInfo *info, IndexBulkDeleteResult *stats)
 
byteabrinoptions (Datum reloptions, bool validate)
 
bool brinvalidate (Oid opclassoid)
 

Macro Definition Documentation

◆ BRIN_elog

#define BRIN_elog (   args)    ((void) 0)

Definition at line 85 of file brin_internal.h.

◆ BRIN_FIRST_OPTIONAL_PROCNUM

#define BRIN_FIRST_OPTIONAL_PROCNUM   11

Definition at line 77 of file brin_internal.h.

◆ BRIN_LAST_OPTIONAL_PROCNUM

#define BRIN_LAST_OPTIONAL_PROCNUM   15

Definition at line 78 of file brin_internal.h.

◆ BRIN_MANDATORY_NPROCS

#define BRIN_MANDATORY_NPROCS   4

Definition at line 74 of file brin_internal.h.

◆ BRIN_PROCNUM_ADDVALUE

#define BRIN_PROCNUM_ADDVALUE   2

Definition at line 71 of file brin_internal.h.

◆ BRIN_PROCNUM_CONSISTENT

#define BRIN_PROCNUM_CONSISTENT   3

Definition at line 72 of file brin_internal.h.

◆ BRIN_PROCNUM_OPCINFO

#define BRIN_PROCNUM_OPCINFO   1

Definition at line 70 of file brin_internal.h.

◆ BRIN_PROCNUM_OPTIONS

#define BRIN_PROCNUM_OPTIONS   5 /* optional */

Definition at line 75 of file brin_internal.h.

◆ BRIN_PROCNUM_UNION

#define BRIN_PROCNUM_UNION   4

Definition at line 73 of file brin_internal.h.

◆ SizeofBrinOpcInfo

#define SizeofBrinOpcInfo (   ncols)     (offsetof(BrinOpcInfo, oi_typcache) + sizeof(TypeCacheEntry *) * ncols)

Definition at line 41 of file brin_internal.h.

Typedef Documentation

◆ BrinDesc

typedef struct BrinDesc BrinDesc

◆ BrinOpcInfo

typedef struct BrinOpcInfo BrinOpcInfo

Function Documentation

◆ brin_build_desc()

BrinDesc* brin_build_desc ( Relation  rel)

Definition at line 1195 of file brin.c.

1196 {
1197  BrinOpcInfo **opcinfo;
1198  BrinDesc *bdesc;
1199  TupleDesc tupdesc;
1200  int totalstored = 0;
1201  int keyno;
1202  long totalsize;
1203  MemoryContext cxt;
1204  MemoryContext oldcxt;
1205 
1207  "brin desc cxt",
1209  oldcxt = MemoryContextSwitchTo(cxt);
1210  tupdesc = RelationGetDescr(rel);
1211 
1212  /*
1213  * Obtain BrinOpcInfo for each indexed column. While at it, accumulate
1214  * the number of columns stored, since the number is opclass-defined.
1215  */
1216  opcinfo = palloc_array(BrinOpcInfo*, tupdesc->natts);
1217  for (keyno = 0; keyno < tupdesc->natts; keyno++)
1218  {
1219  FmgrInfo *opcInfoFn;
1220  Form_pg_attribute attr = TupleDescAttr(tupdesc, keyno);
1221 
1222  opcInfoFn = index_getprocinfo(rel, keyno + 1, BRIN_PROCNUM_OPCINFO);
1223 
1224  opcinfo[keyno] = (BrinOpcInfo *)
1225  DatumGetPointer(FunctionCall1(opcInfoFn, attr->atttypid));
1226  totalstored += opcinfo[keyno]->oi_nstored;
1227  }
1228 
1229  /* Allocate our result struct and fill it in */
1230  totalsize = offsetof(BrinDesc, bd_info) +
1231  sizeof(BrinOpcInfo *) * tupdesc->natts;
1232 
1233  bdesc = palloc(totalsize);
1234  bdesc->bd_context = cxt;
1235  bdesc->bd_index = rel;
1236  bdesc->bd_tupdesc = tupdesc;
1237  bdesc->bd_disktdesc = NULL; /* generated lazily */
1238  bdesc->bd_totalstored = totalstored;
1239 
1240  for (keyno = 0; keyno < tupdesc->natts; keyno++)
1241  bdesc->bd_info[keyno] = opcinfo[keyno];
1242  pfree(opcinfo);
1243 
1244  MemoryContextSwitchTo(oldcxt);
1245 
1246  return bdesc;
1247 }
#define BRIN_PROCNUM_OPCINFO
Definition: brin_internal.h:70
#define palloc_array(type, count)
Definition: fe_memutils.h:64
#define FunctionCall1(flinfo, arg1)
Definition: fmgr.h:660
FmgrInfo * index_getprocinfo(Relation irel, AttrNumber attnum, uint16 procnum)
Definition: indexam.c:811
void pfree(void *pointer)
Definition: mcxt.c:1436
MemoryContext CurrentMemoryContext
Definition: mcxt.c:135
void * palloc(Size size)
Definition: mcxt.c:1210
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_SMALL_SIZES
Definition: memutils.h:163
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:138
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
#define RelationGetDescr(relation)
Definition: rel.h:529
int bd_totalstored
Definition: brin_internal.h:59
TupleDesc bd_tupdesc
Definition: brin_internal.h:53
BrinOpcInfo * bd_info[FLEXIBLE_ARRAY_MEMBER]
Definition: brin_internal.h:62
Relation bd_index
Definition: brin_internal.h:50
MemoryContext bd_context
Definition: brin_internal.h:47
TupleDesc bd_disktdesc
Definition: brin_internal.h:56
uint16 oi_nstored
Definition: brin_internal.h:28
Definition: fmgr.h:57
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92

References ALLOCSET_SMALL_SIZES, AllocSetContextCreate, BrinDesc::bd_context, BrinDesc::bd_disktdesc, BrinDesc::bd_index, BrinDesc::bd_info, BrinDesc::bd_totalstored, BrinDesc::bd_tupdesc, BRIN_PROCNUM_OPCINFO, CurrentMemoryContext, DatumGetPointer(), FunctionCall1, index_getprocinfo(), MemoryContextSwitchTo(), TupleDescData::natts, BrinOpcInfo::oi_nstored, palloc(), palloc_array, pfree(), RelationGetDescr, and TupleDescAttr.

Referenced by brin_page_items(), brinbeginscan(), brininsert(), and initialize_brin_buildstate().

◆ brin_free_desc()

void brin_free_desc ( BrinDesc bdesc)

Definition at line 1250 of file brin.c.

1251 {
1252  /* make sure the tupdesc is still valid */
1253  Assert(bdesc->bd_tupdesc->tdrefcount >= 1);
1254  /* no need for retail pfree */
1256 }
Assert(fmt[strlen(fmt) - 1] !='\n')
void MemoryContextDelete(MemoryContext context)
Definition: mcxt.c:387
int tdrefcount
Definition: tupdesc.h:84

References Assert(), BrinDesc::bd_context, BrinDesc::bd_tupdesc, MemoryContextDelete(), and TupleDescData::tdrefcount.

Referenced by brin_page_items(), brinendscan(), and terminate_brin_buildstate().

◆ brinbeginscan()

IndexScanDesc brinbeginscan ( Relation  r,
int  nkeys,
int  norderbys 
)

Definition at line 327 of file brin.c.

328 {
329  IndexScanDesc scan;
330  BrinOpaque *opaque;
331 
332  scan = RelationGetIndexScan(r, nkeys, norderbys);
333 
334  opaque = palloc_object(BrinOpaque);
335  opaque->bo_rmAccess = brinRevmapInitialize(r, &opaque->bo_pagesPerRange,
336  scan->xs_snapshot);
337  opaque->bo_bdesc = brin_build_desc(r);
338  scan->opaque = opaque;
339 
340  return scan;
341 }
BrinDesc * brin_build_desc(Relation rel)
Definition: brin.c:1195
BrinRevmap * brinRevmapInitialize(Relation idxrel, BlockNumber *pagesPerRange, Snapshot snapshot)
Definition: brin_revmap.c:71
#define palloc_object(type)
Definition: fe_memutils.h:62
IndexScanDesc RelationGetIndexScan(Relation indexRelation, int nkeys, int norderbys)
Definition: genam.c:81
BlockNumber bo_pagesPerRange
Definition: brin.c:66
BrinDesc * bo_bdesc
Definition: brin.c:68
BrinRevmap * bo_rmAccess
Definition: brin.c:67
struct SnapshotData * xs_snapshot
Definition: relscan.h:119

References BrinOpaque::bo_bdesc, BrinOpaque::bo_pagesPerRange, BrinOpaque::bo_rmAccess, brin_build_desc(), brinRevmapInitialize(), IndexScanDescData::opaque, palloc_object, RelationGetIndexScan(), and IndexScanDescData::xs_snapshot.

Referenced by brinhandler().

◆ brinbuild()

IndexBuildResult* brinbuild ( Relation  heap,
Relation  index,
struct IndexInfo indexInfo 
)

Definition at line 818 of file brin.c.

819 {
820  IndexBuildResult *result;
821  double reltuples;
822  double idxtuples;
823  BrinRevmap *revmap;
825  Buffer meta;
826  BlockNumber pagesPerRange;
827 
828  /*
829  * We expect to be called exactly once for any index relation.
830  */
832  elog(ERROR, "index \"%s\" already contains data",
834 
835  /*
836  * Critical section not required, because on error the creation of the
837  * whole relation will be rolled back.
838  */
839 
840  meta = ReadBuffer(index, P_NEW);
843 
846  MarkBufferDirty(meta);
847 
848  if (RelationNeedsWAL(index))
849  {
850  xl_brin_createidx xlrec;
851  XLogRecPtr recptr;
852  Page page;
853 
856 
857  XLogBeginInsert();
858  XLogRegisterData((char *) &xlrec, SizeOfBrinCreateIdx);
860 
861  recptr = XLogInsert(RM_BRIN_ID, XLOG_BRIN_CREATE_INDEX);
862 
863  page = BufferGetPage(meta);
864  PageSetLSN(page, recptr);
865  }
866 
867  UnlockReleaseBuffer(meta);
868 
869  /*
870  * Initialize our state, including the deformed tuple state.
871  */
872  revmap = brinRevmapInitialize(index, &pagesPerRange, NULL);
873  state = initialize_brin_buildstate(index, revmap, pagesPerRange);
874 
875  /*
876  * Now scan the relation. No syncscan allowed here because we want the
877  * heap blocks in physical order.
878  */
879  reltuples = table_index_build_scan(heap, index, indexInfo, false, true,
880  brinbuildCallback, (void *) state, NULL);
881 
882  /* process the final batch */
884 
885  /* release resources */
886  idxtuples = state->bs_numtuples;
887  brinRevmapTerminate(state->bs_rmAccess);
889 
890  /*
891  * Return statistics
892  */
894 
895  result->heap_tuples = reltuples;
896  result->index_tuples = idxtuples;
897 
898  return result;
899 }
uint32 BlockNumber
Definition: block.h:31
static BrinBuildState * initialize_brin_buildstate(Relation idxRel, BrinRevmap *revmap, BlockNumber pagesPerRange)
Definition: brin.c:1283
static void terminate_brin_buildstate(BrinBuildState *state)
Definition: brin.c:1306
static void form_and_insert_tuple(BrinBuildState *state)
Definition: brin.c:1575
static void brinbuildCallback(Relation index, ItemPointer tid, Datum *values, bool *isnull, bool tupleIsAlive, void *brstate)
Definition: brin.c:773
#define BrinGetPagesPerRange(relation)
Definition: brin.h:39
#define BRIN_CURRENT_VERSION
Definition: brin_page.h:72
#define BRIN_METAPAGE_BLKNO
Definition: brin_page.h:75
void brin_metapage_init(Page page, BlockNumber pagesPerRange, uint16 version)
Definition: brin_pageops.c:487
void brinRevmapTerminate(BrinRevmap *revmap)
Definition: brin_revmap.c:103
#define SizeOfBrinCreateIdx
Definition: brin_xlog.h:55
#define XLOG_BRIN_CREATE_INDEX
Definition: brin_xlog.h:31
int Buffer
Definition: buf.h:23
BlockNumber BufferGetBlockNumber(Buffer buffer)
Definition: bufmgr.c:2791
void UnlockReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:4008
void MarkBufferDirty(Buffer buffer)
Definition: bufmgr.c:1621
void LockBuffer(Buffer buffer, int mode)
Definition: bufmgr.c:4226
Buffer ReadBuffer(Relation reln, BlockNumber blockNum)
Definition: bufmgr.c:704
#define P_NEW
Definition: bufmgr.h:105
#define RelationGetNumberOfBlocks(reln)
Definition: bufmgr.h:161
static Page BufferGetPage(Buffer buffer)
Definition: bufmgr.h:284
#define BUFFER_LOCK_EXCLUSIVE
Definition: bufmgr.h:112
Pointer Page
Definition: bufpage.h:78
static void PageSetLSN(Page page, XLogRecPtr lsn)
Definition: bufpage.h:388
#define ERROR
Definition: elog.h:39
#define RelationGetRelationName(relation)
Definition: rel.h:537
#define RelationNeedsWAL(relation)
Definition: rel.h:628
double heap_tuples
Definition: genam.h:32
double index_tuples
Definition: genam.h:33
Definition: type.h:95
Definition: regguts.h:318
BlockNumber pagesPerRange
Definition: brin_xlog.h:52
static double table_index_build_scan(Relation table_rel, Relation index_rel, struct IndexInfo *index_info, bool allow_sync, bool progress, IndexBuildCallback callback, void *callback_state, TableScanDesc scan)
Definition: tableam.h:1782
uint64 XLogRecPtr
Definition: xlogdefs.h:21
void XLogRegisterData(char *data, uint32 len)
Definition: xloginsert.c:351
XLogRecPtr XLogInsert(RmgrId rmid, uint8 info)
Definition: xloginsert.c:451
void XLogRegisterBuffer(uint8 block_id, Buffer buffer, uint8 flags)
Definition: xloginsert.c:243
void XLogBeginInsert(void)
Definition: xloginsert.c:150
#define REGBUF_STANDARD
Definition: xloginsert.h:34
#define REGBUF_WILL_INIT
Definition: xloginsert.h:33

References Assert(), BRIN_CURRENT_VERSION, BRIN_METAPAGE_BLKNO, brin_metapage_init(), brinbuildCallback(), BrinGetPagesPerRange, brinRevmapInitialize(), brinRevmapTerminate(), BUFFER_LOCK_EXCLUSIVE, BufferGetBlockNumber(), BufferGetPage(), elog(), ERROR, form_and_insert_tuple(), IndexBuildResult::heap_tuples, IndexBuildResult::index_tuples, initialize_brin_buildstate(), LockBuffer(), MarkBufferDirty(), P_NEW, PageSetLSN(), xl_brin_createidx::pagesPerRange, palloc_object, ReadBuffer(), REGBUF_STANDARD, REGBUF_WILL_INIT, RelationGetNumberOfBlocks, RelationGetRelationName, RelationNeedsWAL, SizeOfBrinCreateIdx, table_index_build_scan(), terminate_brin_buildstate(), UnlockReleaseBuffer(), xl_brin_createidx::version, XLOG_BRIN_CREATE_INDEX, XLogBeginInsert(), XLogInsert(), XLogRegisterBuffer(), and XLogRegisterData().

Referenced by brinhandler().

◆ brinbuildempty()

void brinbuildempty ( Relation  index)

Definition at line 902 of file brin.c.

903 {
904  Buffer metabuf;
905 
906  /* An empty BRIN index has a metapage only. */
907  metabuf =
910 
911  /* Initialize and xlog metabuffer. */
915  MarkBufferDirty(metabuf);
916  log_newpage_buffer(metabuf, true);
918 
919  UnlockReleaseBuffer(metabuf);
920 }
Buffer ReadBufferExtended(Relation reln, ForkNumber forkNum, BlockNumber blockNum, ReadBufferMode mode, BufferAccessStrategy strategy)
Definition: bufmgr.c:751
@ RBM_NORMAL
Definition: bufmgr.h:44
#define START_CRIT_SECTION()
Definition: miscadmin.h:148
#define END_CRIT_SECTION()
Definition: miscadmin.h:150
@ INIT_FORKNUM
Definition: relpath.h:53
XLogRecPtr log_newpage_buffer(Buffer buffer, bool page_std)
Definition: xloginsert.c:1191

References BRIN_CURRENT_VERSION, brin_metapage_init(), BrinGetPagesPerRange, BUFFER_LOCK_EXCLUSIVE, BufferGetPage(), END_CRIT_SECTION, INIT_FORKNUM, LockBuffer(), log_newpage_buffer(), MarkBufferDirty(), P_NEW, RBM_NORMAL, ReadBufferExtended(), START_CRIT_SECTION, and UnlockReleaseBuffer().

Referenced by brinhandler().

◆ brinbulkdelete()

IndexBulkDeleteResult* brinbulkdelete ( IndexVacuumInfo info,
IndexBulkDeleteResult stats,
IndexBulkDeleteCallback  callback,
void *  callback_state 
)

Definition at line 932 of file brin.c.

934 {
935  /* allocate stats if first time through, else re-use existing struct */
936  if (stats == NULL)
938 
939  return stats;
940 }
#define palloc0_object(type)
Definition: fe_memutils.h:63

References palloc0_object.

Referenced by brinhandler().

◆ brinendscan()

void brinendscan ( IndexScanDesc  scan)

Definition at line 756 of file brin.c.

757 {
758  BrinOpaque *opaque = (BrinOpaque *) scan->opaque;
759 
761  brin_free_desc(opaque->bo_bdesc);
762  pfree(opaque);
763 }
void brin_free_desc(BrinDesc *bdesc)
Definition: brin.c:1250

References BrinOpaque::bo_bdesc, BrinOpaque::bo_rmAccess, brin_free_desc(), brinRevmapTerminate(), IndexScanDescData::opaque, and pfree().

Referenced by brinhandler().

◆ bringetbitmap()

int64 bringetbitmap ( IndexScanDesc  scan,
TIDBitmap tbm 
)

Definition at line 356 of file brin.c.

357 {
358  Relation idxRel = scan->indexRelation;
360  BrinDesc *bdesc;
361  Oid heapOid;
362  Relation heapRel;
363  BrinOpaque *opaque;
364  BlockNumber nblocks;
365  BlockNumber heapBlk;
366  int totalpages = 0;
367  FmgrInfo *consistentFn;
368  MemoryContext oldcxt;
369  MemoryContext perRangeCxt;
370  BrinMemTuple *dtup;
371  BrinTuple *btup = NULL;
372  Size btupsz = 0;
373  ScanKey **keys,
374  **nullkeys;
375  int *nkeys,
376  *nnullkeys;
377  char *ptr;
378  Size len;
379  char *tmp PG_USED_FOR_ASSERTS_ONLY;
380 
381  opaque = (BrinOpaque *) scan->opaque;
382  bdesc = opaque->bo_bdesc;
383  pgstat_count_index_scan(idxRel);
384 
385  /*
386  * We need to know the size of the table so that we know how long to
387  * iterate on the revmap.
388  */
389  heapOid = IndexGetRelation(RelationGetRelid(idxRel), false);
390  heapRel = table_open(heapOid, AccessShareLock);
391  nblocks = RelationGetNumberOfBlocks(heapRel);
392  table_close(heapRel, AccessShareLock);
393 
394  /*
395  * Make room for the consistent support procedures of indexed columns. We
396  * don't look them up here; we do that lazily the first time we see a scan
397  * key reference each of them. We rely on zeroing fn_oid to InvalidOid.
398  */
399  consistentFn = palloc0_array(FmgrInfo, bdesc->bd_tupdesc->natts);
400 
401  /*
402  * Make room for per-attribute lists of scan keys that we'll pass to the
403  * consistent support procedure. We don't know which attributes have scan
404  * keys, so we allocate space for all attributes. That may use more memory
405  * but it's probably cheaper than determining which attributes are used.
406  *
407  * We keep null and regular keys separate, so that we can pass just the
408  * regular keys to the consistent function easily.
409  *
410  * To reduce the allocation overhead, we allocate one big chunk and then
411  * carve it into smaller arrays ourselves. All the pieces have exactly the
412  * same lifetime, so that's OK.
413  *
414  * XXX The widest index can have 32 attributes, so the amount of wasted
415  * memory is negligible. We could invent a more compact approach (with
416  * just space for used attributes) but that would make the matching more
417  * complex so it's not a good trade-off.
418  */
419  len =
420  MAXALIGN(sizeof(ScanKey *) * bdesc->bd_tupdesc->natts) + /* regular keys */
421  MAXALIGN(sizeof(ScanKey) * scan->numberOfKeys) * bdesc->bd_tupdesc->natts +
422  MAXALIGN(sizeof(int) * bdesc->bd_tupdesc->natts) +
423  MAXALIGN(sizeof(ScanKey *) * bdesc->bd_tupdesc->natts) + /* NULL keys */
424  MAXALIGN(sizeof(ScanKey) * scan->numberOfKeys) * bdesc->bd_tupdesc->natts +
425  MAXALIGN(sizeof(int) * bdesc->bd_tupdesc->natts);
426 
427  ptr = palloc(len);
428  tmp = ptr;
429 
430  keys = (ScanKey **) ptr;
431  ptr += MAXALIGN(sizeof(ScanKey *) * bdesc->bd_tupdesc->natts);
432 
433  nullkeys = (ScanKey **) ptr;
434  ptr += MAXALIGN(sizeof(ScanKey *) * bdesc->bd_tupdesc->natts);
435 
436  nkeys = (int *) ptr;
437  ptr += MAXALIGN(sizeof(int) * bdesc->bd_tupdesc->natts);
438 
439  nnullkeys = (int *) ptr;
440  ptr += MAXALIGN(sizeof(int) * bdesc->bd_tupdesc->natts);
441 
442  for (int i = 0; i < bdesc->bd_tupdesc->natts; i++)
443  {
444  keys[i] = (ScanKey *) ptr;
445  ptr += MAXALIGN(sizeof(ScanKey) * scan->numberOfKeys);
446 
447  nullkeys[i] = (ScanKey *) ptr;
448  ptr += MAXALIGN(sizeof(ScanKey) * scan->numberOfKeys);
449  }
450 
451  Assert(tmp + len == ptr);
452 
453  /* zero the number of keys */
454  memset(nkeys, 0, sizeof(int) * bdesc->bd_tupdesc->natts);
455  memset(nnullkeys, 0, sizeof(int) * bdesc->bd_tupdesc->natts);
456 
457  /* Preprocess the scan keys - split them into per-attribute arrays. */
458  for (int keyno = 0; keyno < scan->numberOfKeys; keyno++)
459  {
460  ScanKey key = &scan->keyData[keyno];
461  AttrNumber keyattno = key->sk_attno;
462 
463  /*
464  * The collation of the scan key must match the collation used in the
465  * index column (but only if the search is not IS NULL/ IS NOT NULL).
466  * Otherwise we shouldn't be using this index ...
467  */
468  Assert((key->sk_flags & SK_ISNULL) ||
469  (key->sk_collation ==
470  TupleDescAttr(bdesc->bd_tupdesc,
471  keyattno - 1)->attcollation));
472 
473  /*
474  * First time we see this index attribute, so init as needed.
475  *
476  * This is a bit of an overkill - we don't know how many scan keys are
477  * there for this attribute, so we simply allocate the largest number
478  * possible (as if all keys were for this attribute). This may waste a
479  * bit of memory, but we only expect small number of scan keys in
480  * general, so this should be negligible, and repeated repalloc calls
481  * are not free either.
482  */
483  if (consistentFn[keyattno - 1].fn_oid == InvalidOid)
484  {
485  FmgrInfo *tmp;
486 
487  /* First time we see this attribute, so no key/null keys. */
488  Assert(nkeys[keyattno - 1] == 0);
489  Assert(nnullkeys[keyattno - 1] == 0);
490 
491  tmp = index_getprocinfo(idxRel, keyattno,
493  fmgr_info_copy(&consistentFn[keyattno - 1], tmp,
495  }
496 
497  /* Add key to the proper per-attribute array. */
498  if (key->sk_flags & SK_ISNULL)
499  {
500  nullkeys[keyattno - 1][nnullkeys[keyattno - 1]] = key;
501  nnullkeys[keyattno - 1]++;
502  }
503  else
504  {
505  keys[keyattno - 1][nkeys[keyattno - 1]] = key;
506  nkeys[keyattno - 1]++;
507  }
508  }
509 
510  /* allocate an initial in-memory tuple, out of the per-range memcxt */
511  dtup = brin_new_memtuple(bdesc);
512 
513  /*
514  * Setup and use a per-range memory context, which is reset every time we
515  * loop below. This avoids having to free the tuples within the loop.
516  */
518  "bringetbitmap cxt",
520  oldcxt = MemoryContextSwitchTo(perRangeCxt);
521 
522  /*
523  * Now scan the revmap. We start by querying for heap page 0,
524  * incrementing by the number of pages per range; this gives us a full
525  * view of the table.
526  */
527  for (heapBlk = 0; heapBlk < nblocks; heapBlk += opaque->bo_pagesPerRange)
528  {
529  bool addrange;
530  bool gottuple = false;
531  BrinTuple *tup;
532  OffsetNumber off;
533  Size size;
534 
536 
538 
539  tup = brinGetTupleForHeapBlock(opaque->bo_rmAccess, heapBlk, &buf,
540  &off, &size, BUFFER_LOCK_SHARE,
541  scan->xs_snapshot);
542  if (tup)
543  {
544  gottuple = true;
545  btup = brin_copy_tuple(tup, size, btup, &btupsz);
547  }
548 
549  /*
550  * For page ranges with no indexed tuple, we must return the whole
551  * range; otherwise, compare it to the scan keys.
552  */
553  if (!gottuple)
554  {
555  addrange = true;
556  }
557  else
558  {
559  dtup = brin_deform_tuple(bdesc, btup, dtup);
560  if (dtup->bt_placeholder)
561  {
562  /*
563  * Placeholder tuples are always returned, regardless of the
564  * values stored in them.
565  */
566  addrange = true;
567  }
568  else
569  {
570  int attno;
571 
572  /*
573  * Compare scan keys with summary values stored for the range.
574  * If scan keys are matched, the page range must be added to
575  * the bitmap. We initially assume the range needs to be
576  * added; in particular this serves the case where there are
577  * no keys.
578  */
579  addrange = true;
580  for (attno = 1; attno <= bdesc->bd_tupdesc->natts; attno++)
581  {
582  BrinValues *bval;
583  Datum add;
584  Oid collation;
585 
586  /*
587  * skip attributes without any scan keys (both regular and
588  * IS [NOT] NULL)
589  */
590  if (nkeys[attno - 1] == 0 && nnullkeys[attno - 1] == 0)
591  continue;
592 
593  bval = &dtup->bt_columns[attno - 1];
594 
595  /*
596  * First check if there are any IS [NOT] NULL scan keys,
597  * and if we're violating them. In that case we can
598  * terminate early, without invoking the support function.
599  *
600  * As there may be more keys, we can only determine
601  * mismatch within this loop.
602  */
603  if (bdesc->bd_info[attno - 1]->oi_regular_nulls &&
604  !check_null_keys(bval, nullkeys[attno - 1],
605  nnullkeys[attno - 1]))
606  {
607  /*
608  * If any of the IS [NOT] NULL keys failed, the page
609  * range as a whole can't pass. So terminate the loop.
610  */
611  addrange = false;
612  break;
613  }
614 
615  /*
616  * So either there are no IS [NOT] NULL keys, or all
617  * passed. If there are no regular scan keys, we're done -
618  * the page range matches. If there are regular keys, but
619  * the page range is marked as 'all nulls' it can't
620  * possibly pass (we're assuming the operators are
621  * strict).
622  */
623 
624  /* No regular scan keys - page range as a whole passes. */
625  if (!nkeys[attno - 1])
626  continue;
627 
628  Assert((nkeys[attno - 1] > 0) &&
629  (nkeys[attno - 1] <= scan->numberOfKeys));
630 
631  /* If it is all nulls, it cannot possibly be consistent. */
632  if (bval->bv_allnulls)
633  {
634  addrange = false;
635  break;
636  }
637 
638  /*
639  * Collation from the first key (has to be the same for
640  * all keys for the same attribute).
641  */
642  collation = keys[attno - 1][0]->sk_collation;
643 
644  /*
645  * Check whether the scan key is consistent with the page
646  * range values; if so, have the pages in the range added
647  * to the output bitmap.
648  *
649  * The opclass may or may not support processing of
650  * multiple scan keys. We can determine that based on the
651  * number of arguments - functions with extra parameter
652  * (number of scan keys) do support this, otherwise we
653  * have to simply pass the scan keys one by one.
654  */
655  if (consistentFn[attno - 1].fn_nargs >= 4)
656  {
657  /* Check all keys at once */
658  add = FunctionCall4Coll(&consistentFn[attno - 1],
659  collation,
660  PointerGetDatum(bdesc),
661  PointerGetDatum(bval),
662  PointerGetDatum(keys[attno - 1]),
663  Int32GetDatum(nkeys[attno - 1]));
664  addrange = DatumGetBool(add);
665  }
666  else
667  {
668  /*
669  * Check keys one by one
670  *
671  * When there are multiple scan keys, failure to meet
672  * the criteria for a single one of them is enough to
673  * discard the range as a whole, so break out of the
674  * loop as soon as a false return value is obtained.
675  */
676  int keyno;
677 
678  for (keyno = 0; keyno < nkeys[attno - 1]; keyno++)
679  {
680  add = FunctionCall3Coll(&consistentFn[attno - 1],
681  keys[attno - 1][keyno]->sk_collation,
682  PointerGetDatum(bdesc),
683  PointerGetDatum(bval),
684  PointerGetDatum(keys[attno - 1][keyno]));
685  addrange = DatumGetBool(add);
686  if (!addrange)
687  break;
688  }
689  }
690 
691  /*
692  * If we found a scan key eliminating the range, no need to
693  * check additional ones.
694  */
695  if (!addrange)
696  break;
697  }
698  }
699  }
700 
701  /* add the pages in the range to the output bitmap, if needed */
702  if (addrange)
703  {
704  BlockNumber pageno;
705 
706  for (pageno = heapBlk;
707  pageno <= Min(nblocks, heapBlk + opaque->bo_pagesPerRange) - 1;
708  pageno++)
709  {
710  MemoryContextSwitchTo(oldcxt);
711  tbm_add_page(tbm, pageno);
712  totalpages++;
713  MemoryContextSwitchTo(perRangeCxt);
714  }
715  }
716  }
717 
718  MemoryContextSwitchTo(oldcxt);
719  MemoryContextDelete(perRangeCxt);
720 
721  if (buf != InvalidBuffer)
723 
724  /*
725  * XXX We have an approximation of the number of *pages* that our scan
726  * returns, but we don't have a precise idea of the number of heap tuples
727  * involved.
728  */
729  return totalpages * 10;
730 }
int16 AttrNumber
Definition: attnum.h:21
static bool check_null_keys(BrinValues *bval, ScanKey *nullkeys, int nnullkeys)
Definition: brin.c:1755
#define BRIN_PROCNUM_CONSISTENT
Definition: brin_internal.h:72
BrinTuple * brinGetTupleForHeapBlock(BrinRevmap *revmap, BlockNumber heapBlk, Buffer *buf, OffsetNumber *off, Size *size, int mode, Snapshot snapshot)
Definition: brin_revmap.c:197
BrinMemTuple * brin_new_memtuple(BrinDesc *brdesc)
Definition: brin_tuple.c:479
BrinMemTuple * brin_deform_tuple(BrinDesc *brdesc, BrinTuple *tuple, BrinMemTuple *dMemtuple)
Definition: brin_tuple.c:546
BrinTuple * brin_copy_tuple(BrinTuple *tuple, Size len, BrinTuple *dest, Size *destsz)
Definition: brin_tuple.c:443
#define InvalidBuffer
Definition: buf.h:25
void ReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:3985
#define BUFFER_LOCK_UNLOCK
Definition: bufmgr.h:110
#define BUFFER_LOCK_SHARE
Definition: bufmgr.h:111
#define Min(x, y)
Definition: c.h:988
#define MAXALIGN(LEN)
Definition: c.h:795
#define PG_USED_FOR_ASSERTS_ONLY
Definition: c.h:166
size_t Size
Definition: c.h:589
#define palloc0_array(type, count)
Definition: fe_memutils.h:65
Datum FunctionCall4Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4)
Definition: fmgr.c:1168
Datum FunctionCall3Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3)
Definition: fmgr.c:1143
void fmgr_info_copy(FmgrInfo *dstinfo, FmgrInfo *srcinfo, MemoryContext destcxt)
Definition: fmgr.c:580
Oid IndexGetRelation(Oid indexId, bool missing_ok)
Definition: index.c:3533
int i
Definition: isn.c:73
#define AccessShareLock
Definition: lockdefs.h:36
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:153
#define MemoryContextResetAndDeleteChildren(ctx)
Definition: memutils.h:70
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:121
uint16 OffsetNumber
Definition: off.h:24
const void size_t len
static char * buf
Definition: pg_test_fsync.c:67
#define pgstat_count_index_scan(rel)
Definition: pgstat.h:615
static bool DatumGetBool(Datum X)
Definition: postgres.h:90
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
uintptr_t Datum
Definition: postgres.h:64
static Datum Int32GetDatum(int32 X)
Definition: postgres.h:212
#define InvalidOid
Definition: postgres_ext.h:36
unsigned int Oid
Definition: postgres_ext.h:31
static void addrange(struct cvec *cv, chr from, chr to)
Definition: regc_cvec.c:90
#define RelationGetRelid(relation)
Definition: rel.h:503
#define SK_ISNULL
Definition: skey.h:115
BrinValues bt_columns[FLEXIBLE_ARRAY_MEMBER]
Definition: brin_tuple.h:54
bool bt_placeholder
Definition: brin_tuple.h:46
bool oi_regular_nulls
Definition: brin_internal.h:31
bool bv_allnulls
Definition: brin_tuple.h:33
struct ScanKeyData * keyData
Definition: relscan.h:122
Relation indexRelation
Definition: relscan.h:118
Oid sk_collation
Definition: skey.h:70
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40
void tbm_add_page(TIDBitmap *tbm, BlockNumber pageno)
Definition: tidbitmap.c:442

References AccessShareLock, addrange(), ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, Assert(), BrinDesc::bd_info, BrinDesc::bd_tupdesc, BrinOpaque::bo_bdesc, BrinOpaque::bo_pagesPerRange, BrinOpaque::bo_rmAccess, brin_copy_tuple(), brin_deform_tuple(), brin_new_memtuple(), BRIN_PROCNUM_CONSISTENT, brinGetTupleForHeapBlock(), BrinMemTuple::bt_columns, BrinMemTuple::bt_placeholder, buf, BUFFER_LOCK_SHARE, BUFFER_LOCK_UNLOCK, BrinValues::bv_allnulls, CHECK_FOR_INTERRUPTS, check_null_keys(), CurrentMemoryContext, DatumGetBool(), fmgr_info_copy(), FunctionCall3Coll(), FunctionCall4Coll(), i, index_getprocinfo(), IndexGetRelation(), IndexScanDescData::indexRelation, Int32GetDatum(), InvalidBuffer, InvalidOid, sort-test::key, IndexScanDescData::keyData, len, LockBuffer(), MAXALIGN, MemoryContextDelete(), MemoryContextResetAndDeleteChildren, MemoryContextSwitchTo(), Min, TupleDescData::natts, IndexScanDescData::numberOfKeys, BrinOpcInfo::oi_regular_nulls, IndexScanDescData::opaque, palloc(), palloc0_array, PG_USED_FOR_ASSERTS_ONLY, pgstat_count_index_scan, PointerGetDatum(), RelationGetNumberOfBlocks, RelationGetRelid, ReleaseBuffer(), ScanKeyData::sk_collation, SK_ISNULL, table_close(), table_open(), tbm_add_page(), TupleDescAttr, and IndexScanDescData::xs_snapshot.

Referenced by brinhandler().

◆ brininsert()

bool brininsert ( Relation  idxRel,
Datum values,
bool nulls,
ItemPointer  heaptid,
Relation  heapRel,
IndexUniqueCheck  checkUnique,
bool  indexUnchanged,
struct IndexInfo indexInfo 
)

Definition at line 156 of file brin.c.

161 {
162  BlockNumber pagesPerRange;
163  BlockNumber origHeapBlk;
164  BlockNumber heapBlk;
165  BrinDesc *bdesc = (BrinDesc *) indexInfo->ii_AmCache;
166  BrinRevmap *revmap;
168  MemoryContext tupcxt = NULL;
170  bool autosummarize = BrinGetAutoSummarize(idxRel);
171 
172  revmap = brinRevmapInitialize(idxRel, &pagesPerRange, NULL);
173 
174  /*
175  * origHeapBlk is the block number where the insertion occurred. heapBlk
176  * is the first block in the corresponding page range.
177  */
178  origHeapBlk = ItemPointerGetBlockNumber(heaptid);
179  heapBlk = (origHeapBlk / pagesPerRange) * pagesPerRange;
180 
181  for (;;)
182  {
183  bool need_insert = false;
184  OffsetNumber off;
185  BrinTuple *brtup;
186  BrinMemTuple *dtup;
187 
189 
190  /*
191  * If auto-summarization is enabled and we just inserted the first
192  * tuple into the first block of a new non-first page range, request a
193  * summarization run of the previous range.
194  */
195  if (autosummarize &&
196  heapBlk > 0 &&
197  heapBlk == origHeapBlk &&
199  {
200  BlockNumber lastPageRange = heapBlk - 1;
201  BrinTuple *lastPageTuple;
202 
203  lastPageTuple =
204  brinGetTupleForHeapBlock(revmap, lastPageRange, &buf, &off,
205  NULL, BUFFER_LOCK_SHARE, NULL);
206  if (!lastPageTuple)
207  {
208  bool recorded;
209 
211  RelationGetRelid(idxRel),
212  lastPageRange);
213  if (!recorded)
214  ereport(LOG,
215  (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
216  errmsg("request for BRIN range summarization for index \"%s\" page %u was not recorded",
217  RelationGetRelationName(idxRel),
218  lastPageRange)));
219  }
220  else
222  }
223 
224  brtup = brinGetTupleForHeapBlock(revmap, heapBlk, &buf, &off,
225  NULL, BUFFER_LOCK_SHARE, NULL);
226 
227  /* if range is unsummarized, there's nothing to do */
228  if (!brtup)
229  break;
230 
231  /* First time through in this statement? */
232  if (bdesc == NULL)
233  {
234  MemoryContextSwitchTo(indexInfo->ii_Context);
235  bdesc = brin_build_desc(idxRel);
236  indexInfo->ii_AmCache = (void *) bdesc;
237  MemoryContextSwitchTo(oldcxt);
238  }
239  /* First time through in this brininsert call? */
240  if (tupcxt == NULL)
241  {
243  "brininsert cxt",
245  MemoryContextSwitchTo(tupcxt);
246  }
247 
248  dtup = brin_deform_tuple(bdesc, brtup, NULL);
249 
250  need_insert = add_values_to_range(idxRel, bdesc, dtup, values, nulls);
251 
252  if (!need_insert)
253  {
254  /*
255  * The tuple is consistent with the new values, so there's nothing
256  * to do.
257  */
259  }
260  else
261  {
262  Page page = BufferGetPage(buf);
263  ItemId lp = PageGetItemId(page, off);
264  Size origsz;
265  BrinTuple *origtup;
266  Size newsz;
267  BrinTuple *newtup;
268  bool samepage;
269 
270  /*
271  * Make a copy of the old tuple, so that we can compare it after
272  * re-acquiring the lock.
273  */
274  origsz = ItemIdGetLength(lp);
275  origtup = brin_copy_tuple(brtup, origsz, NULL, NULL);
276 
277  /*
278  * Before releasing the lock, check if we can attempt a same-page
279  * update. Another process could insert a tuple concurrently in
280  * the same page though, so downstream we must be prepared to cope
281  * if this turns out to not be possible after all.
282  */
283  newtup = brin_form_tuple(bdesc, heapBlk, dtup, &newsz);
284  samepage = brin_can_do_samepage_update(buf, origsz, newsz);
286 
287  /*
288  * Try to update the tuple. If this doesn't work for whatever
289  * reason, we need to restart from the top; the revmap might be
290  * pointing at a different tuple for this block now, so we need to
291  * recompute to ensure both our new heap tuple and the other
292  * inserter's are covered by the combined tuple. It might be that
293  * we don't need to update at all.
294  */
295  if (!brin_doupdate(idxRel, pagesPerRange, revmap, heapBlk,
296  buf, off, origtup, origsz, newtup, newsz,
297  samepage))
298  {
299  /* no luck; start over */
301  continue;
302  }
303  }
304 
305  /* success! */
306  break;
307  }
308 
309  brinRevmapTerminate(revmap);
310  if (BufferIsValid(buf))
312  MemoryContextSwitchTo(oldcxt);
313  if (tupcxt != NULL)
314  MemoryContextDelete(tupcxt);
315 
316  return false;
317 }
bool AutoVacuumRequestWork(AutoVacuumWorkItemType type, Oid relationId, BlockNumber blkno)
Definition: autovacuum.c:3262
@ AVW_BRINSummarizeRange
Definition: autovacuum.h:25
static Datum values[MAXATTR]
Definition: bootstrap.c:156
static bool add_values_to_range(Relation idxRel, BrinDesc *bdesc, BrinMemTuple *dtup, Datum *values, bool *nulls)
Definition: brin.c:1703
#define BrinGetAutoSummarize(relation)
Definition: brin.h:45
bool brin_doupdate(Relation idxrel, BlockNumber pagesPerRange, BrinRevmap *revmap, BlockNumber heapBlk, Buffer oldbuf, OffsetNumber oldoff, const BrinTuple *origtup, Size origsz, const BrinTuple *newtup, Size newsz, bool samepage)
Definition: brin_pageops.c:54
bool brin_can_do_samepage_update(Buffer buffer, Size origsz, Size newsz)
Definition: brin_pageops.c:324
BrinTuple * brin_form_tuple(BrinDesc *brdesc, BlockNumber blkno, BrinMemTuple *tuple, Size *size)
Definition: brin_tuple.c:99
static bool BufferIsValid(Buffer bufnum)
Definition: bufmgr.h:232
static ItemId PageGetItemId(Page page, OffsetNumber offsetNumber)
Definition: bufpage.h:240
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define LOG
Definition: elog.h:31
#define ereport(elevel,...)
Definition: elog.h:149
#define ItemIdGetLength(itemId)
Definition: itemid.h:59
static OffsetNumber ItemPointerGetOffsetNumber(const ItemPointerData *pointer)
Definition: itemptr.h:124
static BlockNumber ItemPointerGetBlockNumber(const ItemPointerData *pointer)
Definition: itemptr.h:103
#define FirstOffsetNumber
Definition: off.h:27
void * ii_AmCache
Definition: execnodes.h:201
MemoryContext ii_Context
Definition: execnodes.h:202

References add_values_to_range(), ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, AutoVacuumRequestWork(), AVW_BRINSummarizeRange, brin_build_desc(), brin_can_do_samepage_update(), brin_copy_tuple(), brin_deform_tuple(), brin_doupdate(), brin_form_tuple(), BrinGetAutoSummarize, brinGetTupleForHeapBlock(), brinRevmapInitialize(), brinRevmapTerminate(), buf, BUFFER_LOCK_SHARE, BUFFER_LOCK_UNLOCK, BufferGetPage(), BufferIsValid(), CHECK_FOR_INTERRUPTS, CurrentMemoryContext, ereport, errcode(), errmsg(), FirstOffsetNumber, IndexInfo::ii_AmCache, IndexInfo::ii_Context, InvalidBuffer, ItemIdGetLength, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), LockBuffer(), LOG, MemoryContextDelete(), MemoryContextResetAndDeleteChildren, MemoryContextSwitchTo(), PageGetItemId(), RelationGetRelationName, RelationGetRelid, ReleaseBuffer(), and values.

Referenced by brinhandler().

◆ brinoptions()

bytea* brinoptions ( Datum  reloptions,
bool  validate 
)

Definition at line 977 of file brin.c.

978 {
979  static const relopt_parse_elt tab[] = {
980  {"pages_per_range", RELOPT_TYPE_INT, offsetof(BrinOptions, pagesPerRange)},
981  {"autosummarize", RELOPT_TYPE_BOOL, offsetof(BrinOptions, autosummarize)}
982  };
983 
984  return (bytea *) build_reloptions(reloptions, validate,
986  sizeof(BrinOptions),
987  tab, lengthof(tab));
988 }
#define lengthof(array)
Definition: c.h:772
void * build_reloptions(Datum reloptions, bool validate, relopt_kind kind, Size relopt_struct_size, const relopt_parse_elt *relopt_elems, int num_relopt_elems)
Definition: reloptions.c:1910
@ RELOPT_KIND_BRIN
Definition: reloptions.h:52
@ RELOPT_TYPE_INT
Definition: reloptions.h:32
@ RELOPT_TYPE_BOOL
Definition: reloptions.h:31
Definition: c.h:671

References build_reloptions(), lengthof, RELOPT_KIND_BRIN, RELOPT_TYPE_BOOL, and RELOPT_TYPE_INT.

Referenced by brinhandler().

◆ brinrescan()

void brinrescan ( IndexScanDesc  scan,
ScanKey  scankey,
int  nscankeys,
ScanKey  orderbys,
int  norderbys 
)

Definition at line 736 of file brin.c.

738 {
739  /*
740  * Other index AMs preprocess the scan keys at this point, or sometime
741  * early during the scan; this lets them optimize by removing redundant
742  * keys, or doing early returns when they are impossible to satisfy; see
743  * _bt_preprocess_keys for an example. Something like that could be added
744  * here someday, too.
745  */
746 
747  if (scankey && scan->numberOfKeys > 0)
748  memmove(scan->keyData, scankey,
749  scan->numberOfKeys * sizeof(ScanKeyData));
750 }

References IndexScanDescData::keyData, and IndexScanDescData::numberOfKeys.

Referenced by brinhandler().

◆ brinvacuumcleanup()

IndexBulkDeleteResult* brinvacuumcleanup ( IndexVacuumInfo info,
IndexBulkDeleteResult stats 
)

Definition at line 947 of file brin.c.

948 {
949  Relation heapRel;
950 
951  /* No-op in ANALYZE ONLY mode */
952  if (info->analyze_only)
953  return stats;
954 
955  if (!stats)
957  stats->num_pages = RelationGetNumberOfBlocks(info->index);
958  /* rest of stats is initialized by zeroing */
959 
960  heapRel = table_open(IndexGetRelation(RelationGetRelid(info->index), false),
962 
963  brin_vacuum_scan(info->index, info->strategy);
964 
965  brinsummarize(info->index, heapRel, BRIN_ALL_BLOCKRANGES, false,
966  &stats->num_index_tuples, &stats->num_index_tuples);
967 
968  table_close(heapRel, AccessShareLock);
969 
970  return stats;
971 }
static void brin_vacuum_scan(Relation idxrel, BufferAccessStrategy strategy)
Definition: brin.c:1670
#define BRIN_ALL_BLOCKRANGES
Definition: brin.c:71
static void brinsummarize(Relation index, Relation heapRel, BlockNumber pageRange, bool include_partial, double *numSummarized, double *numExisting)
Definition: brin.c:1478
BlockNumber num_pages
Definition: genam.h:76
double num_index_tuples
Definition: genam.h:78
Relation index
Definition: genam.h:46
bool analyze_only
Definition: genam.h:47
BufferAccessStrategy strategy
Definition: genam.h:52

References AccessShareLock, IndexVacuumInfo::analyze_only, BRIN_ALL_BLOCKRANGES, brin_vacuum_scan(), brinsummarize(), IndexVacuumInfo::index, IndexGetRelation(), IndexBulkDeleteResult::num_index_tuples, IndexBulkDeleteResult::num_pages, palloc0_object, RelationGetNumberOfBlocks, RelationGetRelid, IndexVacuumInfo::strategy, table_close(), and table_open().

Referenced by brinhandler().

◆ brinvalidate()

bool brinvalidate ( Oid  opclassoid)

Definition at line 37 of file brin_validate.c.

38 {
39  bool result = true;
40  HeapTuple classtup;
41  Form_pg_opclass classform;
42  Oid opfamilyoid;
43  Oid opcintype;
44  char *opclassname;
45  HeapTuple familytup;
46  Form_pg_opfamily familyform;
47  char *opfamilyname;
48  CatCList *proclist,
49  *oprlist;
50  uint64 allfuncs = 0;
51  uint64 allops = 0;
52  List *grouplist;
53  OpFamilyOpFuncGroup *opclassgroup;
54  int i;
55  ListCell *lc;
56 
57  /* Fetch opclass information */
58  classtup = SearchSysCache1(CLAOID, ObjectIdGetDatum(opclassoid));
59  if (!HeapTupleIsValid(classtup))
60  elog(ERROR, "cache lookup failed for operator class %u", opclassoid);
61  classform = (Form_pg_opclass) GETSTRUCT(classtup);
62 
63  opfamilyoid = classform->opcfamily;
64  opcintype = classform->opcintype;
65  opclassname = NameStr(classform->opcname);
66 
67  /* Fetch opfamily information */
68  familytup = SearchSysCache1(OPFAMILYOID, ObjectIdGetDatum(opfamilyoid));
69  if (!HeapTupleIsValid(familytup))
70  elog(ERROR, "cache lookup failed for operator family %u", opfamilyoid);
71  familyform = (Form_pg_opfamily) GETSTRUCT(familytup);
72 
73  opfamilyname = NameStr(familyform->opfname);
74 
75  /* Fetch all operators and support functions of the opfamily */
76  oprlist = SearchSysCacheList1(AMOPSTRATEGY, ObjectIdGetDatum(opfamilyoid));
77  proclist = SearchSysCacheList1(AMPROCNUM, ObjectIdGetDatum(opfamilyoid));
78 
79  /* Check individual support functions */
80  for (i = 0; i < proclist->n_members; i++)
81  {
82  HeapTuple proctup = &proclist->members[i]->tuple;
83  Form_pg_amproc procform = (Form_pg_amproc) GETSTRUCT(proctup);
84  bool ok;
85 
86  /* Check procedure numbers and function signatures */
87  switch (procform->amprocnum)
88  {
90  ok = check_amproc_signature(procform->amproc, INTERNALOID, true,
91  1, 1, INTERNALOID);
92  break;
94  ok = check_amproc_signature(procform->amproc, BOOLOID, true,
95  4, 4, INTERNALOID, INTERNALOID,
96  INTERNALOID, INTERNALOID);
97  break;
99  ok = check_amproc_signature(procform->amproc, BOOLOID, true,
100  3, 4, INTERNALOID, INTERNALOID,
101  INTERNALOID, INT4OID);
102  break;
103  case BRIN_PROCNUM_UNION:
104  ok = check_amproc_signature(procform->amproc, BOOLOID, true,
105  3, 3, INTERNALOID, INTERNALOID,
106  INTERNALOID);
107  break;
109  ok = check_amoptsproc_signature(procform->amproc);
110  break;
111  default:
112  /* Complain if it's not a valid optional proc number */
113  if (procform->amprocnum < BRIN_FIRST_OPTIONAL_PROCNUM ||
114  procform->amprocnum > BRIN_LAST_OPTIONAL_PROCNUM)
115  {
116  ereport(INFO,
117  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
118  errmsg("operator family \"%s\" of access method %s contains function %s with invalid support number %d",
119  opfamilyname, "brin",
120  format_procedure(procform->amproc),
121  procform->amprocnum)));
122  result = false;
123  continue; /* omit bad proc numbers from allfuncs */
124  }
125  /* Can't check signatures of optional procs, so assume OK */
126  ok = true;
127  break;
128  }
129 
130  if (!ok)
131  {
132  ereport(INFO,
133  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
134  errmsg("operator family \"%s\" of access method %s contains function %s with wrong signature for support number %d",
135  opfamilyname, "brin",
136  format_procedure(procform->amproc),
137  procform->amprocnum)));
138  result = false;
139  }
140 
141  /* Track all valid procedure numbers seen in opfamily */
142  allfuncs |= ((uint64) 1) << procform->amprocnum;
143  }
144 
145  /* Check individual operators */
146  for (i = 0; i < oprlist->n_members; i++)
147  {
148  HeapTuple oprtup = &oprlist->members[i]->tuple;
149  Form_pg_amop oprform = (Form_pg_amop) GETSTRUCT(oprtup);
150 
151  /* Check that only allowed strategy numbers exist */
152  if (oprform->amopstrategy < 1 || oprform->amopstrategy > 63)
153  {
154  ereport(INFO,
155  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
156  errmsg("operator family \"%s\" of access method %s contains operator %s with invalid strategy number %d",
157  opfamilyname, "brin",
158  format_operator(oprform->amopopr),
159  oprform->amopstrategy)));
160  result = false;
161  }
162  else
163  {
164  /*
165  * The set of operators supplied varies across BRIN opfamilies.
166  * Our plan is to identify all operator strategy numbers used in
167  * the opfamily and then complain about datatype combinations that
168  * are missing any operator(s). However, consider only numbers
169  * that appear in some non-cross-type case, since cross-type
170  * operators may have unique strategies. (This is not a great
171  * heuristic, in particular an erroneous number used in a
172  * cross-type operator will not get noticed; but the core BRIN
173  * opfamilies are messy enough to make it necessary.)
174  */
175  if (oprform->amoplefttype == oprform->amoprighttype)
176  allops |= ((uint64) 1) << oprform->amopstrategy;
177  }
178 
179  /* brin doesn't support ORDER BY operators */
180  if (oprform->amoppurpose != AMOP_SEARCH ||
181  OidIsValid(oprform->amopsortfamily))
182  {
183  ereport(INFO,
184  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
185  errmsg("operator family \"%s\" of access method %s contains invalid ORDER BY specification for operator %s",
186  opfamilyname, "brin",
187  format_operator(oprform->amopopr))));
188  result = false;
189  }
190 
191  /* Check operator signature --- same for all brin strategies */
192  if (!check_amop_signature(oprform->amopopr, BOOLOID,
193  oprform->amoplefttype,
194  oprform->amoprighttype))
195  {
196  ereport(INFO,
197  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
198  errmsg("operator family \"%s\" of access method %s contains operator %s with wrong signature",
199  opfamilyname, "brin",
200  format_operator(oprform->amopopr))));
201  result = false;
202  }
203  }
204 
205  /* Now check for inconsistent groups of operators/functions */
206  grouplist = identify_opfamily_groups(oprlist, proclist);
207  opclassgroup = NULL;
208  foreach(lc, grouplist)
209  {
210  OpFamilyOpFuncGroup *thisgroup = (OpFamilyOpFuncGroup *) lfirst(lc);
211 
212  /* Remember the group exactly matching the test opclass */
213  if (thisgroup->lefttype == opcintype &&
214  thisgroup->righttype == opcintype)
215  opclassgroup = thisgroup;
216 
217  /*
218  * Some BRIN opfamilies expect cross-type support functions to exist,
219  * and some don't. We don't know exactly which are which, so if we
220  * find a cross-type operator for which there are no support functions
221  * at all, let it pass. (Don't expect that all operators exist for
222  * such cross-type cases, either.)
223  */
224  if (thisgroup->functionset == 0 &&
225  thisgroup->lefttype != thisgroup->righttype)
226  continue;
227 
228  /*
229  * Else complain if there seems to be an incomplete set of either
230  * operators or support functions for this datatype pair.
231  */
232  if (thisgroup->operatorset != allops)
233  {
234  ereport(INFO,
235  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
236  errmsg("operator family \"%s\" of access method %s is missing operator(s) for types %s and %s",
237  opfamilyname, "brin",
238  format_type_be(thisgroup->lefttype),
239  format_type_be(thisgroup->righttype))));
240  result = false;
241  }
242  if (thisgroup->functionset != allfuncs)
243  {
244  ereport(INFO,
245  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
246  errmsg("operator family \"%s\" of access method %s is missing support function(s) for types %s and %s",
247  opfamilyname, "brin",
248  format_type_be(thisgroup->lefttype),
249  format_type_be(thisgroup->righttype))));
250  result = false;
251  }
252  }
253 
254  /* Check that the originally-named opclass is complete */
255  if (!opclassgroup || opclassgroup->operatorset != allops)
256  {
257  ereport(INFO,
258  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
259  errmsg("operator class \"%s\" of access method %s is missing operator(s)",
260  opclassname, "brin")));
261  result = false;
262  }
263  for (i = 1; i <= BRIN_MANDATORY_NPROCS; i++)
264  {
265  if (opclassgroup &&
266  (opclassgroup->functionset & (((int64) 1) << i)) != 0)
267  continue; /* got it */
268  ereport(INFO,
269  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
270  errmsg("operator class \"%s\" of access method %s is missing support function %d",
271  opclassname, "brin", i)));
272  result = false;
273  }
274 
275  ReleaseCatCacheList(proclist);
276  ReleaseCatCacheList(oprlist);
277  ReleaseSysCache(familytup);
278  ReleaseSysCache(classtup);
279 
280  return result;
281 }
bool check_amproc_signature(Oid funcid, Oid restype, bool exact, int minargs, int maxargs,...)
Definition: amvalidate.c:152
bool check_amop_signature(Oid opno, Oid restype, Oid lefttype, Oid righttype)
Definition: amvalidate.c:206
List * identify_opfamily_groups(CatCList *oprlist, CatCList *proclist)
Definition: amvalidate.c:43
bool check_amoptsproc_signature(Oid funcid)
Definition: amvalidate.c:192
#define BRIN_LAST_OPTIONAL_PROCNUM
Definition: brin_internal.h:78
#define BRIN_PROCNUM_UNION
Definition: brin_internal.h:73
#define BRIN_MANDATORY_NPROCS
Definition: brin_internal.h:74
#define BRIN_PROCNUM_OPTIONS
Definition: brin_internal.h:75
#define BRIN_FIRST_OPTIONAL_PROCNUM
Definition: brin_internal.h:77
#define BRIN_PROCNUM_ADDVALUE
Definition: brin_internal.h:71
#define NameStr(name)
Definition: c.h:730
#define OidIsValid(objectId)
Definition: c.h:759
void ReleaseCatCacheList(CatCList *list)
Definition: catcache.c:1776
#define INFO
Definition: elog.h:34
char * format_type_be(Oid type_oid)
Definition: format_type.c:339
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
FormData_pg_amop * Form_pg_amop
Definition: pg_amop.h:88
FormData_pg_amproc * Form_pg_amproc
Definition: pg_amproc.h:68
#define lfirst(lc)
Definition: pg_list.h:172
FormData_pg_opclass * Form_pg_opclass
Definition: pg_opclass.h:83
FormData_pg_opfamily * Form_pg_opfamily
Definition: pg_opfamily.h:51
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
char * format_operator(Oid operator_oid)
Definition: regproc.c:793
char * format_procedure(Oid procedure_oid)
Definition: regproc.c:299
Definition: pg_list.h:54
CatCTup * members[FLEXIBLE_ARRAY_MEMBER]
Definition: catcache.h:178
int n_members
Definition: catcache.h:176
HeapTupleData tuple
Definition: catcache.h:121
void ReleaseSysCache(HeapTuple tuple)
Definition: syscache.c:866
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Definition: syscache.c:818
@ OPFAMILYOID
Definition: syscache.h:74
@ CLAOID
Definition: syscache.h:48
@ AMPROCNUM
Definition: syscache.h:39
@ AMOPSTRATEGY
Definition: syscache.h:38
#define SearchSysCacheList1(cacheId, key1)
Definition: syscache.h:218

References AMOPSTRATEGY, AMPROCNUM, BRIN_FIRST_OPTIONAL_PROCNUM, BRIN_LAST_OPTIONAL_PROCNUM, BRIN_MANDATORY_NPROCS, BRIN_PROCNUM_ADDVALUE, BRIN_PROCNUM_CONSISTENT, BRIN_PROCNUM_OPCINFO, BRIN_PROCNUM_OPTIONS, BRIN_PROCNUM_UNION, check_amop_signature(), check_amoptsproc_signature(), check_amproc_signature(), CLAOID, elog(), ereport, errcode(), errmsg(), ERROR, format_operator(), format_procedure(), format_type_be(), OpFamilyOpFuncGroup::functionset, GETSTRUCT, HeapTupleIsValid, i, identify_opfamily_groups(), INFO, OpFamilyOpFuncGroup::lefttype, lfirst, catclist::members, catclist::n_members, NameStr, ObjectIdGetDatum(), OidIsValid, OpFamilyOpFuncGroup::operatorset, OPFAMILYOID, ReleaseCatCacheList(), ReleaseSysCache(), OpFamilyOpFuncGroup::righttype, SearchSysCache1(), SearchSysCacheList1, and catctup::tuple.

Referenced by brinhandler().