PostgreSQL Source Code  git master
bootstrap.c File Reference
#include "postgres.h"
#include <unistd.h>
#include <signal.h>
#include "access/genam.h"
#include "access/heapam.h"
#include "access/htup_details.h"
#include "access/tableam.h"
#include "access/toast_compression.h"
#include "access/xact.h"
#include "bootstrap/bootstrap.h"
#include "catalog/index.h"
#include "catalog/pg_collation.h"
#include "catalog/pg_type.h"
#include "common/link-canary.h"
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "pg_getopt.h"
#include "storage/bufpage.h"
#include "storage/ipc.h"
#include "storage/proc.h"
#include "utils/builtins.h"
#include "utils/fmgroids.h"
#include "utils/guc.h"
#include "utils/memutils.h"
#include "utils/rel.h"
#include "utils/relmapper.h"
Include dependency graph for bootstrap.c:

Go to the source code of this file.

Data Structures

struct  typinfo
 
struct  typmap
 
struct  _IndexList
 

Typedefs

typedef struct _IndexList IndexList
 

Functions

static void CheckerModeMain (void)
 
static void bootstrap_signals (void)
 
static Form_pg_attribute AllocateAttribute (void)
 
static void populate_typ_list (void)
 
static Oid gettype (char *type)
 
static void cleanup (void)
 
void BootstrapModeMain (int argc, char *argv[], bool check_only)
 
void boot_openrel (char *relname)
 
void closerel (char *relname)
 
void DefineAttr (char *name, char *type, int attnum, int nullness)
 
void InsertOneTuple (void)
 
void InsertOneValue (char *value, int i)
 
void InsertOneNull (int i)
 
void boot_get_type_io_data (Oid typid, int16 *typlen, bool *typbyval, char *typalign, char *typdelim, Oid *typioparam, Oid *typinput, Oid *typoutput)
 
void index_register (Oid heap, Oid ind, const IndexInfo *indexInfo)
 
void build_indices (void)
 

Variables

uint32 bootstrap_data_checksum_version = 0
 
Relation boot_reldesc
 
Form_pg_attribute attrtypes [MAXATTR]
 
int numattr
 
static const struct typinfo TypInfo []
 
static const int n_types = sizeof(TypInfo) / sizeof(struct typinfo)
 
static ListTyp = NIL
 
static struct typmapAp = NULL
 
static Datum values [MAXATTR]
 
static bool Nulls [MAXATTR]
 
static MemoryContext nogc = NULL
 
static IndexListILHead = NULL
 

Typedef Documentation

◆ IndexList

typedef struct _IndexList IndexList

Function Documentation

◆ AllocateAttribute()

static Form_pg_attribute AllocateAttribute ( void  )
static

Definition at line 883 of file bootstrap.c.

884 {
885  return (Form_pg_attribute)
887 }
MemoryContext TopMemoryContext
Definition: mcxt.c:137
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition: mcxt.c:1202
#define ATTRIBUTE_FIXED_PART_SIZE
Definition: pg_attribute.h:201
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209

References ATTRIBUTE_FIXED_PART_SIZE, MemoryContextAllocZero(), and TopMemoryContext.

Referenced by boot_openrel(), and DefineAttr().

◆ boot_get_type_io_data()

void boot_get_type_io_data ( Oid  typid,
int16 typlen,
bool typbyval,
char *  typalign,
char *  typdelim,
Oid typioparam,
Oid typinput,
Oid typoutput 
)

Definition at line 806 of file bootstrap.c.

814 {
815  if (Typ != NIL)
816  {
817  /* We have the boot-time contents of pg_type, so use it */
818  struct typmap *ap = NULL;
819  ListCell *lc;
820 
821  foreach(lc, Typ)
822  {
823  ap = lfirst(lc);
824  if (ap->am_oid == typid)
825  break;
826  }
827 
828  if (!ap || ap->am_oid != typid)
829  elog(ERROR, "type OID %u not found in Typ list", typid);
830 
831  *typlen = ap->am_typ.typlen;
832  *typbyval = ap->am_typ.typbyval;
833  *typalign = ap->am_typ.typalign;
834  *typdelim = ap->am_typ.typdelim;
835 
836  /* XXX this logic must match getTypeIOParam() */
837  if (OidIsValid(ap->am_typ.typelem))
838  *typioparam = ap->am_typ.typelem;
839  else
840  *typioparam = typid;
841 
842  *typinput = ap->am_typ.typinput;
843  *typoutput = ap->am_typ.typoutput;
844  }
845  else
846  {
847  /* We don't have pg_type yet, so use the hard-wired TypInfo array */
848  int typeindex;
849 
850  for (typeindex = 0; typeindex < n_types; typeindex++)
851  {
852  if (TypInfo[typeindex].oid == typid)
853  break;
854  }
855  if (typeindex >= n_types)
856  elog(ERROR, "type OID %u not found in TypInfo", typid);
857 
858  *typlen = TypInfo[typeindex].len;
859  *typbyval = TypInfo[typeindex].byval;
860  *typalign = TypInfo[typeindex].align;
861  /* We assume typdelim is ',' for all boot-time types */
862  *typdelim = ',';
863 
864  /* XXX this logic must match getTypeIOParam() */
865  if (OidIsValid(TypInfo[typeindex].elem))
866  *typioparam = TypInfo[typeindex].elem;
867  else
868  *typioparam = typid;
869 
870  *typinput = TypInfo[typeindex].inproc;
871  *typoutput = TypInfo[typeindex].outproc;
872  }
873 }
static const int n_types
Definition: bootstrap.c:141
static const struct typinfo TypInfo[]
Definition: bootstrap.c:88
static List * Typ
Definition: bootstrap.c:149
#define OidIsValid(objectId)
Definition: c.h:762
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
#define lfirst(lc)
Definition: pg_list.h:172
#define NIL
Definition: pg_list.h:68
char typalign
Definition: pg_type.h:176
char align
Definition: bootstrap.c:81
Oid outproc
Definition: bootstrap.c:85
int16 len
Definition: bootstrap.c:79
bool byval
Definition: bootstrap.c:80
Oid elem
Definition: bootstrap.c:78
Oid inproc
Definition: bootstrap.c:84
Oid am_oid
Definition: bootstrap.c:145
FormData_pg_type am_typ
Definition: bootstrap.c:146

References typinfo::align, typmap::am_oid, typmap::am_typ, typinfo::byval, typinfo::elem, elog, ERROR, typinfo::inproc, typinfo::len, lfirst, n_types, NIL, OidIsValid, typinfo::outproc, Typ, typalign, and TypInfo.

Referenced by get_type_io_data(), and InsertOneValue().

◆ boot_openrel()

void boot_openrel ( char *  relname)

Definition at line 408 of file bootstrap.c.

409 {
410  int i;
411 
412  if (strlen(relname) >= NAMEDATALEN)
413  relname[NAMEDATALEN - 1] = '\0';
414 
415  /*
416  * pg_type must be filled before any OPEN command is executed, hence we
417  * can now populate Typ if we haven't yet.
418  */
419  if (Typ == NIL)
421 
422  if (boot_reldesc != NULL)
423  closerel(NULL);
424 
425  elog(DEBUG4, "open relation %s, attrsize %d",
427 
430  for (i = 0; i < numattr; i++)
431  {
432  if (attrtypes[i] == NULL)
434  memmove((char *) attrtypes[i],
435  (char *) TupleDescAttr(boot_reldesc->rd_att, i),
437 
438  {
440 
441  elog(DEBUG4, "create attribute %d name %s len %d num %d type %u",
442  i, NameStr(at->attname), at->attlen, at->attnum,
443  at->atttypid);
444  }
445  }
446 }
void closerel(char *relname)
Definition: bootstrap.c:453
static void populate_typ_list(void)
Definition: bootstrap.c:695
Relation boot_reldesc
Definition: bootstrap.c:59
Form_pg_attribute attrtypes[MAXATTR]
Definition: bootstrap.c:61
int numattr
Definition: bootstrap.c:62
static Form_pg_attribute AllocateAttribute(void)
Definition: bootstrap.c:883
#define NameStr(name)
Definition: c.h:733
#define DEBUG4
Definition: elog.h:27
int i
Definition: isn.c:73
#define NoLock
Definition: lockdefs.h:34
RangeVar * makeRangeVar(char *schemaname, char *relname, int location)
Definition: makefuncs.c:424
NameData relname
Definition: pg_class.h:38
#define NAMEDATALEN
#define RelationGetNumberOfAttributes(relation)
Definition: rel.h:511
TupleDesc rd_att
Definition: rel.h:112
Relation table_openrv(const RangeVar *relation, LOCKMODE lockmode)
Definition: table.c:83
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92

References AllocateAttribute(), ATTRIBUTE_FIXED_PART_SIZE, attrtypes, boot_reldesc, closerel(), DEBUG4, elog, i, makeRangeVar(), NAMEDATALEN, NameStr, NIL, NoLock, numattr, populate_typ_list(), RelationData::rd_att, RelationGetNumberOfAttributes, relname, table_openrv(), TupleDescAttr, and Typ.

◆ bootstrap_signals()

static void bootstrap_signals ( void  )
static

Definition at line 381 of file bootstrap.c.

382 {
384 
385  /*
386  * We don't actually need any non-default signal handling in bootstrap
387  * mode; "curl up and die" is a sufficient response for all these cases.
388  * Let's set that handling explicitly, as documentation if nothing else.
389  */
391  pqsignal(SIGINT, SIG_DFL);
392  pqsignal(SIGTERM, SIG_DFL);
394 }
bool IsUnderPostmaster
Definition: globals.c:117
Assert(fmt[strlen(fmt) - 1] !='\n')
pqsigfunc pqsignal(int signo, pqsigfunc func)
#define SIGHUP
Definition: win32_port.h:168
#define SIG_DFL
Definition: win32_port.h:163
#define SIGQUIT
Definition: win32_port.h:169

References Assert(), IsUnderPostmaster, pqsignal(), SIG_DFL, SIGHUP, and SIGQUIT.

Referenced by BootstrapModeMain().

◆ BootstrapModeMain()

void BootstrapModeMain ( int  argc,
char *  argv[],
bool  check_only 
)

Definition at line 199 of file bootstrap.c.

200 {
201  int i;
202  char *progname = argv[0];
203  int flag;
204  char *userDoption = NULL;
205 
207 
208  InitStandaloneProcess(argv[0]);
209 
210  /* Set defaults, to be overridden by explicit options below */
212 
213  /* an initial --boot or --check should be present */
214  Assert(argc > 1
215  && (strcmp(argv[1], "--boot") == 0
216  || strcmp(argv[1], "--check") == 0));
217  argv++;
218  argc--;
219 
220  while ((flag = getopt(argc, argv, "B:c:d:D:Fkr:X:-:")) != -1)
221  {
222  switch (flag)
223  {
224  case 'B':
225  SetConfigOption("shared_buffers", optarg, PGC_POSTMASTER, PGC_S_ARGV);
226  break;
227  case 'c':
228  case '-':
229  {
230  char *name,
231  *value;
232 
234  if (!value)
235  {
236  if (flag == '-')
237  ereport(ERROR,
238  (errcode(ERRCODE_SYNTAX_ERROR),
239  errmsg("--%s requires a value",
240  optarg)));
241  else
242  ereport(ERROR,
243  (errcode(ERRCODE_SYNTAX_ERROR),
244  errmsg("-c %s requires a value",
245  optarg)));
246  }
247 
249  pfree(name);
250  pfree(value);
251  break;
252  }
253  case 'D':
255  break;
256  case 'd':
257  {
258  /* Turn on debugging for the bootstrap process. */
259  char *debugstr;
260 
261  debugstr = psprintf("debug%s", optarg);
262  SetConfigOption("log_min_messages", debugstr,
264  SetConfigOption("client_min_messages", debugstr,
266  pfree(debugstr);
267  }
268  break;
269  case 'F':
270  SetConfigOption("fsync", "false", PGC_POSTMASTER, PGC_S_ARGV);
271  break;
272  case 'k':
274  break;
275  case 'r':
277  break;
278  case 'X':
280  break;
281  default:
282  write_stderr("Try \"%s --help\" for more information.\n",
283  progname);
284  proc_exit(1);
285  break;
286  }
287  }
288 
289  if (argc != optind)
290  {
291  write_stderr("%s: invalid command-line arguments\n", progname);
292  proc_exit(1);
293  }
294 
295  /* Acquire configuration parameters */
297  proc_exit(1);
298 
299  /*
300  * Validate we have been given a reasonable-looking DataDir and change
301  * into it
302  */
303  checkDataDir();
304  ChangeToDataDir();
305 
306  CreateDataDirLockFile(false);
307 
309  IgnoreSystemIndexes = true;
310 
312 
314 
315  /*
316  * XXX: It might make sense to move this into its own function at some
317  * point. Right now it seems like it'd cause more code duplication than
318  * it's worth.
319  */
320  if (check_only)
321  {
323  CheckerModeMain();
324  abort();
325  }
326 
327  /*
328  * Do backend-like initialization for bootstrap mode
329  */
330  InitProcess();
331 
332  BaseInit();
333 
335  BootStrapXLOG();
336 
337  /*
338  * To ensure that src/common/link-canary.c is linked into the backend, we
339  * must call it from somewhere. Here is as good as anywhere.
340  */
342  elog(ERROR, "backend is incorrectly linked to frontend functions");
343 
344  InitPostgres(NULL, InvalidOid, NULL, InvalidOid, 0, NULL);
345 
346  /* Initialize stuff for bootstrap-file processing */
347  for (i = 0; i < MAXATTR; i++)
348  {
349  attrtypes[i] = NULL;
350  Nulls[i] = false;
351  }
352 
353  /*
354  * Process bootstrap input.
355  */
357  boot_yyparse();
359 
360  /*
361  * We should now know about all mapped relations, so it's okay to write
362  * out the initial relation mapping files.
363  */
365 
366  /* Clean up and exit */
367  cleanup();
368  proc_exit(0);
369 }
#define write_stderr(str)
Definition: parallel.c:184
static void CheckerModeMain(void)
Definition: bootstrap.c:181
static void cleanup(void)
Definition: bootstrap.c:682
static void bootstrap_signals(void)
Definition: bootstrap.c:381
uint32 bootstrap_data_checksum_version
Definition: bootstrap.c:44
static bool Nulls[MAXATTR]
Definition: bootstrap.c:153
#define MAXATTR
Definition: bootstrap.h:25
int boot_yyparse(void)
#define PG_DATA_CHECKSUM_VERSION
Definition: bufpage.h:203
int errcode(int sqlerrcode)
Definition: elog.c:859
int errmsg(const char *fmt,...)
Definition: elog.c:1072
#define ereport(elevel,...)
Definition: elog.h:149
char OutputFileName[MAXPGPATH]
Definition: globals.c:76
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Definition: guc.c:4275
bool SelectConfigFiles(const char *userDoption, const char *progname)
Definition: guc.c:1786
void ParseLongOption(const char *string, char **name, char **value)
Definition: guc.c:6306
void InitializeGUCOptions(void)
Definition: guc.c:1532
@ PGC_S_DYNAMIC_DEFAULT
Definition: guc.h:110
@ PGC_S_ARGV
Definition: guc.h:113
@ PGC_INTERNAL
Definition: guc.h:69
@ PGC_POSTMASTER
Definition: guc.h:70
static struct @150 value
void proc_exit(int code)
Definition: ipc.c:104
void CreateSharedMemoryAndSemaphores(void)
Definition: ipci.c:199
const char * progname
Definition: main.c:44
char * pstrdup(const char *in)
Definition: mcxt.c:1683
void pfree(void *pointer)
Definition: mcxt.c:1508
@ NormalProcessing
Definition: miscadmin.h:446
@ BootstrapProcessing
Definition: miscadmin.h:444
#define SetProcessingMode(mode)
Definition: miscadmin.h:457
void ChangeToDataDir(void)
Definition: miscinit.c:454
void InitStandaloneProcess(const char *argv0)
Definition: miscinit.c:181
bool IgnoreSystemIndexes
Definition: miscinit.c:80
void checkDataDir(void)
Definition: miscinit.c:341
void CreateDataDirLockFile(bool amPostmaster)
Definition: miscinit.c:1455
#define MAXPGPATH
PGDLLIMPORT int optind
Definition: getopt.c:50
int getopt(int nargc, char *const *nargv, const char *ostr)
Definition: getopt.c:71
PGDLLIMPORT char * optarg
Definition: getopt.c:52
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45
static const char * userDoption
Definition: postgres.c:161
#define InvalidOid
Definition: postgres_ext.h:36
void InitializeMaxBackends(void)
Definition: postinit.c:575
void BaseInit(void)
Definition: postinit.c:645
void InitPostgres(const char *in_dbname, Oid dboid, const char *username, Oid useroid, bits32 flags, char *out_dbname)
Definition: postinit.c:736
char * psprintf(const char *fmt,...)
Definition: psprintf.c:46
void RelationMapFinishBootstrap(void)
Definition: relmapper.c:625
void InitProcess(void)
Definition: proc.c:296
char * flag(int b)
Definition: test-ctype.c:33
const char * name
void StartTransactionCommand(void)
Definition: xact.c:2955
void CommitTransactionCommand(void)
Definition: xact.c:3053
void BootStrapXLOG(void)
Definition: xlog.c:4920

References Assert(), attrtypes, BaseInit(), boot_yyparse(), bootstrap_data_checksum_version, bootstrap_signals(), BootstrapProcessing, BootStrapXLOG(), ChangeToDataDir(), checkDataDir(), CheckerModeMain(), cleanup(), CommitTransactionCommand(), CreateDataDirLockFile(), CreateSharedMemoryAndSemaphores(), elog, ereport, errcode(), errmsg(), ERROR, flag(), getopt(), i, IgnoreSystemIndexes, InitializeGUCOptions(), InitializeMaxBackends(), InitPostgres(), InitProcess(), InitStandaloneProcess(), InvalidOid, IsUnderPostmaster, MAXATTR, MAXPGPATH, name, NormalProcessing, Nulls, optarg, optind, OutputFileName, ParseLongOption(), pfree(), PG_DATA_CHECKSUM_VERSION, pg_link_canary_is_frontend(), PGC_INTERNAL, PGC_POSTMASTER, PGC_S_ARGV, PGC_S_DYNAMIC_DEFAULT, proc_exit(), progname, psprintf(), pstrdup(), RelationMapFinishBootstrap(), SelectConfigFiles(), SetConfigOption(), SetProcessingMode, StartTransactionCommand(), strlcpy(), userDoption, value, and write_stderr.

Referenced by main().

◆ build_indices()

void build_indices ( void  )

Definition at line 951 of file bootstrap.c.

952 {
953  for (; ILHead != NULL; ILHead = ILHead->il_next)
954  {
955  Relation heap;
956  Relation ind;
957 
958  /* need not bother with locks during bootstrap */
959  heap = table_open(ILHead->il_heap, NoLock);
961 
962  index_build(heap, ind, ILHead->il_info, false, false);
963 
965  table_close(heap, NoLock);
966  }
967 }
static IndexList * ILHead
Definition: bootstrap.c:171
void index_build(Relation heapRelation, Relation indexRelation, IndexInfo *indexInfo, bool isreindex, bool parallel)
Definition: index.c:2941
void index_close(Relation relation, LOCKMODE lockmode)
Definition: indexam.c:177
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition: indexam.c:133
Oid il_heap
Definition: bootstrap.c:165
struct _IndexList * il_next
Definition: bootstrap.c:168
Oid il_ind
Definition: bootstrap.c:166
IndexInfo * il_info
Definition: bootstrap.c:167
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40

References _IndexList::il_heap, _IndexList::il_ind, _IndexList::il_info, _IndexList::il_next, ILHead, index_build(), index_close(), index_open(), NoLock, table_close(), and table_open().

◆ CheckerModeMain()

static void CheckerModeMain ( void  )
static

Definition at line 181 of file bootstrap.c.

182 {
183  proc_exit(0);
184 }

References proc_exit().

Referenced by BootstrapModeMain().

◆ cleanup()

◆ closerel()

void closerel ( char *  relname)

Definition at line 453 of file bootstrap.c.

454 {
455  if (relname)
456  {
457  if (boot_reldesc)
458  {
459  if (strcmp(RelationGetRelationName(boot_reldesc), relname) != 0)
460  elog(ERROR, "close of %s when %s was expected",
462  }
463  else
464  elog(ERROR, "close of %s before any relation was opened",
465  relname);
466  }
467 
468  if (boot_reldesc == NULL)
469  elog(ERROR, "no open relation to close");
470  else
471  {
472  elog(DEBUG4, "close relation %s",
475  boot_reldesc = NULL;
476  }
477 }
#define RelationGetRelationName(relation)
Definition: rel.h:539

References boot_reldesc, DEBUG4, elog, ERROR, NoLock, RelationGetRelationName, relname, and table_close().

Referenced by boot_openrel(), cleanup(), and DefineAttr().

◆ DefineAttr()

void DefineAttr ( char *  name,
char *  type,
int  attnum,
int  nullness 
)

Definition at line 490 of file bootstrap.c.

491 {
492  Oid typeoid;
493 
494  if (boot_reldesc != NULL)
495  {
496  elog(WARNING, "no open relations allowed with CREATE command");
497  closerel(NULL);
498  }
499 
500  if (attrtypes[attnum] == NULL)
503 
505  elog(DEBUG4, "column %s %s", NameStr(attrtypes[attnum]->attname), type);
506  attrtypes[attnum]->attnum = attnum + 1;
507 
508  typeoid = gettype(type);
509 
510  if (Typ != NIL)
511  {
512  attrtypes[attnum]->atttypid = Ap->am_oid;
513  attrtypes[attnum]->attlen = Ap->am_typ.typlen;
514  attrtypes[attnum]->attbyval = Ap->am_typ.typbyval;
515  attrtypes[attnum]->attalign = Ap->am_typ.typalign;
516  attrtypes[attnum]->attstorage = Ap->am_typ.typstorage;
517  attrtypes[attnum]->attcompression = InvalidCompressionMethod;
518  attrtypes[attnum]->attcollation = Ap->am_typ.typcollation;
519  /* if an array type, assume 1-dimensional attribute */
520  if (Ap->am_typ.typelem != InvalidOid && Ap->am_typ.typlen < 0)
521  attrtypes[attnum]->attndims = 1;
522  else
523  attrtypes[attnum]->attndims = 0;
524  }
525  else
526  {
527  attrtypes[attnum]->atttypid = TypInfo[typeoid].oid;
528  attrtypes[attnum]->attlen = TypInfo[typeoid].len;
529  attrtypes[attnum]->attbyval = TypInfo[typeoid].byval;
530  attrtypes[attnum]->attalign = TypInfo[typeoid].align;
531  attrtypes[attnum]->attstorage = TypInfo[typeoid].storage;
532  attrtypes[attnum]->attcompression = InvalidCompressionMethod;
533  attrtypes[attnum]->attcollation = TypInfo[typeoid].collation;
534  /* if an array type, assume 1-dimensional attribute */
535  if (TypInfo[typeoid].elem != InvalidOid &&
536  attrtypes[attnum]->attlen < 0)
537  attrtypes[attnum]->attndims = 1;
538  else
539  attrtypes[attnum]->attndims = 0;
540  }
541 
542  /*
543  * If a system catalog column is collation-aware, force it to use C
544  * collation, so that its behavior is independent of the database's
545  * collation. This is essential to allow template0 to be cloned with a
546  * different database collation.
547  */
548  if (OidIsValid(attrtypes[attnum]->attcollation))
549  attrtypes[attnum]->attcollation = C_COLLATION_OID;
550 
551  attrtypes[attnum]->attcacheoff = -1;
552  attrtypes[attnum]->atttypmod = -1;
553  attrtypes[attnum]->attislocal = true;
554 
555  if (nullness == BOOTCOL_NULL_FORCE_NOT_NULL)
556  {
557  attrtypes[attnum]->attnotnull = true;
558  }
559  else if (nullness == BOOTCOL_NULL_FORCE_NULL)
560  {
561  attrtypes[attnum]->attnotnull = false;
562  }
563  else
564  {
565  Assert(nullness == BOOTCOL_NULL_AUTO);
566 
567  /*
568  * Mark as "not null" if type is fixed-width and prior columns are
569  * likewise fixed-width and not-null. This corresponds to case where
570  * column can be accessed directly via C struct declaration.
571  */
572  if (attrtypes[attnum]->attlen > 0)
573  {
574  int i;
575 
576  /* check earlier attributes */
577  for (i = 0; i < attnum; i++)
578  {
579  if (attrtypes[i]->attlen <= 0 ||
581  break;
582  }
583  if (i == attnum)
584  attrtypes[attnum]->attnotnull = true;
585  }
586  }
587 }
static Oid gettype(char *type)
Definition: bootstrap.c:735
static struct typmap * Ap
Definition: bootstrap.c:150
#define BOOTCOL_NULL_FORCE_NULL
Definition: bootstrap.h:28
#define BOOTCOL_NULL_FORCE_NOT_NULL
Definition: bootstrap.h:29
#define BOOTCOL_NULL_AUTO
Definition: bootstrap.h:27
#define MemSet(start, val, len)
Definition: c.h:1007
#define WARNING
Definition: elog.h:36
void namestrcpy(Name name, const char *str)
Definition: name.c:233
NameData attname
Definition: pg_attribute.h:41
int16 attnum
Definition: pg_attribute.h:74
int16 attlen
Definition: pg_attribute.h:59
bool attnotnull
Definition: pg_attribute.h:130
unsigned int Oid
Definition: postgres_ext.h:31
Oid oid
Definition: bootstrap.c:77
Oid collation
Definition: bootstrap.c:83
char storage
Definition: bootstrap.c:82
#define InvalidCompressionMethod
const char * type

References typinfo::align, AllocateAttribute(), typmap::am_oid, typmap::am_typ, Ap, Assert(), attlen, attname, attnotnull, attnum, ATTRIBUTE_FIXED_PART_SIZE, attrtypes, boot_reldesc, BOOTCOL_NULL_AUTO, BOOTCOL_NULL_FORCE_NOT_NULL, BOOTCOL_NULL_FORCE_NULL, typinfo::byval, closerel(), typinfo::collation, DEBUG4, elog, gettype(), i, InvalidCompressionMethod, InvalidOid, typinfo::len, MemSet, name, NameStr, namestrcpy(), NIL, typinfo::oid, OidIsValid, typinfo::storage, Typ, type, TypInfo, and WARNING.

◆ gettype()

static Oid gettype ( char *  type)
static

Definition at line 735 of file bootstrap.c.

736 {
737  if (Typ != NIL)
738  {
739  ListCell *lc;
740 
741  foreach(lc, Typ)
742  {
743  struct typmap *app = lfirst(lc);
744 
745  if (strncmp(NameStr(app->am_typ.typname), type, NAMEDATALEN) == 0)
746  {
747  Ap = app;
748  return app->am_oid;
749  }
750  }
751 
752  /*
753  * The type wasn't known; reload the pg_type contents and check again
754  * to handle composite types, added since last populating the list.
755  */
756 
758  Typ = NIL;
760 
761  /*
762  * Calling gettype would result in infinite recursion for types
763  * missing in pg_type, so just repeat the lookup.
764  */
765  foreach(lc, Typ)
766  {
767  struct typmap *app = lfirst(lc);
768 
769  if (strncmp(NameStr(app->am_typ.typname), type, NAMEDATALEN) == 0)
770  {
771  Ap = app;
772  return app->am_oid;
773  }
774  }
775  }
776  else
777  {
778  int i;
779 
780  for (i = 0; i < n_types; i++)
781  {
782  if (strncmp(type, TypInfo[i].name, NAMEDATALEN) == 0)
783  return i;
784  }
785  /* Not in TypInfo, so we'd better be able to read pg_type now */
786  elog(DEBUG4, "external type: %s", type);
788  return gettype(type);
789  }
790  elog(ERROR, "unrecognized type \"%s\"", type);
791  /* not reached, here to make compiler happy */
792  return 0;
793 }
void list_free_deep(List *list)
Definition: list.c:1560

References typmap::am_oid, typmap::am_typ, Ap, DEBUG4, elog, ERROR, i, lfirst, list_free_deep(), n_types, name, NAMEDATALEN, NameStr, NIL, populate_typ_list(), Typ, type, and TypInfo.

Referenced by DefineAttr().

◆ index_register()

void index_register ( Oid  heap,
Oid  ind,
const IndexInfo indexInfo 
)

Definition at line 901 of file bootstrap.c.

904 {
905  IndexList *newind;
906  MemoryContext oldcxt;
907 
908  /*
909  * XXX mao 10/31/92 -- don't gc index reldescs, associated info at
910  * bootstrap time. we'll declare the indexes now, but want to create them
911  * later.
912  */
913 
914  if (nogc == NULL)
916  "BootstrapNoGC",
918 
919  oldcxt = MemoryContextSwitchTo(nogc);
920 
921  newind = (IndexList *) palloc(sizeof(IndexList));
922  newind->il_heap = heap;
923  newind->il_ind = ind;
924  newind->il_info = (IndexInfo *) palloc(sizeof(IndexInfo));
925 
926  memcpy(newind->il_info, indexInfo, sizeof(IndexInfo));
927  /* expressions will likely be null, but may as well copy it */
928  newind->il_info->ii_Expressions =
929  copyObject(indexInfo->ii_Expressions);
930  newind->il_info->ii_ExpressionsState = NIL;
931  /* predicate will likely be null, but may as well copy it */
932  newind->il_info->ii_Predicate =
933  copyObject(indexInfo->ii_Predicate);
934  newind->il_info->ii_PredicateState = NULL;
935  /* no exclusion constraints at bootstrap time, so no need to copy */
936  Assert(indexInfo->ii_ExclusionOps == NULL);
937  Assert(indexInfo->ii_ExclusionProcs == NULL);
938  Assert(indexInfo->ii_ExclusionStrats == NULL);
939 
940  newind->il_next = ILHead;
941  ILHead = newind;
942 
943  MemoryContextSwitchTo(oldcxt);
944 }
static MemoryContext nogc
Definition: bootstrap.c:155
void * palloc(Size size)
Definition: mcxt.c:1304
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:153
#define copyObject(obj)
Definition: nodes.h:223
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124
uint16 * ii_ExclusionStrats
Definition: execnodes.h:193
ExprState * ii_PredicateState
Definition: execnodes.h:190
Oid * ii_ExclusionOps
Definition: execnodes.h:191
List * ii_ExpressionsState
Definition: execnodes.h:188
List * ii_Expressions
Definition: execnodes.h:187
Oid * ii_ExclusionProcs
Definition: execnodes.h:192
List * ii_Predicate
Definition: execnodes.h:189

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, Assert(), copyObject, IndexInfo::ii_ExclusionOps, IndexInfo::ii_ExclusionProcs, IndexInfo::ii_ExclusionStrats, IndexInfo::ii_Expressions, IndexInfo::ii_ExpressionsState, IndexInfo::ii_Predicate, IndexInfo::ii_PredicateState, _IndexList::il_heap, _IndexList::il_ind, _IndexList::il_info, _IndexList::il_next, ILHead, MemoryContextSwitchTo(), NIL, nogc, and palloc().

Referenced by index_create().

◆ InsertOneNull()

void InsertOneNull ( int  i)

Definition at line 664 of file bootstrap.c.

665 {
666  elog(DEBUG4, "inserting column %d NULL", i);
667  Assert(i >= 0 && i < MAXATTR);
668  if (TupleDescAttr(boot_reldesc->rd_att, i)->attnotnull)
669  elog(ERROR,
670  "NULL value specified for not-null column \"%s\" of relation \"%s\"",
673  values[i] = PointerGetDatum(NULL);
674  Nulls[i] = true;
675 }
static Datum values[MAXATTR]
Definition: bootstrap.c:152
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322

References Assert(), boot_reldesc, DEBUG4, elog, ERROR, i, MAXATTR, NameStr, Nulls, PointerGetDatum(), RelationData::rd_att, RelationGetRelationName, TupleDescAttr, and values.

◆ InsertOneTuple()

void InsertOneTuple ( void  )

Definition at line 598 of file bootstrap.c.

599 {
600  HeapTuple tuple;
601  TupleDesc tupDesc;
602  int i;
603 
604  elog(DEBUG4, "inserting row with %d columns", numattr);
605 
606  tupDesc = CreateTupleDesc(numattr, attrtypes);
607  tuple = heap_form_tuple(tupDesc, values, Nulls);
608  pfree(tupDesc); /* just free's tupDesc, not the attrtypes */
609 
611  heap_freetuple(tuple);
612  elog(DEBUG4, "row inserted");
613 
614  /*
615  * Reset null markers for next tuple
616  */
617  for (i = 0; i < numattr; i++)
618  Nulls[i] = false;
619 }
void simple_heap_insert(Relation relation, HeapTuple tup)
Definition: heapam.c:2455
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
Definition: heaptuple.c:1116
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1434
TupleDesc CreateTupleDesc(int natts, Form_pg_attribute *attrs)
Definition: tupdesc.c:112

References attrtypes, boot_reldesc, CreateTupleDesc(), DEBUG4, elog, heap_form_tuple(), heap_freetuple(), i, Nulls, numattr, pfree(), simple_heap_insert(), and values.

◆ InsertOneValue()

void InsertOneValue ( char *  value,
int  i 
)

Definition at line 626 of file bootstrap.c.

627 {
628  Oid typoid;
629  int16 typlen;
630  bool typbyval;
631  char typalign;
632  char typdelim;
633  Oid typioparam;
634  Oid typinput;
635  Oid typoutput;
636 
637  Assert(i >= 0 && i < MAXATTR);
638 
639  elog(DEBUG4, "inserting column %d value \"%s\"", i, value);
640 
641  typoid = TupleDescAttr(boot_reldesc->rd_att, i)->atttypid;
642 
643  boot_get_type_io_data(typoid,
644  &typlen, &typbyval, &typalign,
645  &typdelim, &typioparam,
646  &typinput, &typoutput);
647 
648  values[i] = OidInputFunctionCall(typinput, value, typioparam, -1);
649 
650  /*
651  * We use ereport not elog here so that parameters aren't evaluated unless
652  * the message is going to be printed, which generally it isn't
653  */
654  ereport(DEBUG4,
655  (errmsg_internal("inserted -> %s",
656  OidOutputFunctionCall(typoutput, values[i]))));
657 }
void boot_get_type_io_data(Oid typid, int16 *typlen, bool *typbyval, char *typalign, char *typdelim, Oid *typioparam, Oid *typinput, Oid *typoutput)
Definition: bootstrap.c:806
signed short int16
Definition: c.h:480
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1159
Datum OidInputFunctionCall(Oid functionId, char *str, Oid typioparam, int32 typmod)
Definition: fmgr.c:1754
char * OidOutputFunctionCall(Oid functionId, Datum val)
Definition: fmgr.c:1763

References Assert(), boot_get_type_io_data(), boot_reldesc, DEBUG4, elog, ereport, errmsg_internal(), i, MAXATTR, OidInputFunctionCall(), OidOutputFunctionCall(), RelationData::rd_att, TupleDescAttr, typalign, value, and values.

◆ populate_typ_list()

static void populate_typ_list ( void  )
static

Definition at line 695 of file bootstrap.c.

696 {
697  Relation rel;
698  TableScanDesc scan;
699  HeapTuple tup;
700  MemoryContext old;
701 
702  Assert(Typ == NIL);
703 
704  rel = table_open(TypeRelationId, NoLock);
705  scan = table_beginscan_catalog(rel, 0, NULL);
707  while ((tup = heap_getnext(scan, ForwardScanDirection)) != NULL)
708  {
709  Form_pg_type typForm = (Form_pg_type) GETSTRUCT(tup);
710  struct typmap *newtyp;
711 
712  newtyp = (struct typmap *) palloc(sizeof(struct typmap));
713  Typ = lappend(Typ, newtyp);
714 
715  newtyp->am_oid = typForm->oid;
716  memcpy(&newtyp->am_typ, typForm, sizeof(newtyp->am_typ));
717  }
719  table_endscan(scan);
720  table_close(rel, NoLock);
721 }
HeapTuple heap_getnext(TableScanDesc sscan, ScanDirection direction)
Definition: heapam.c:1082
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
List * lappend(List *list, void *datum)
Definition: list.c:339
FormData_pg_type * Form_pg_type
Definition: pg_type.h:261
@ ForwardScanDirection
Definition: sdir.h:28
TableScanDesc table_beginscan_catalog(Relation relation, int nkeys, struct ScanKeyData *key)
Definition: tableam.c:112
static void table_endscan(TableScanDesc scan)
Definition: tableam.h:1009

References typmap::am_oid, typmap::am_typ, Assert(), ForwardScanDirection, GETSTRUCT, heap_getnext(), lappend(), MemoryContextSwitchTo(), NIL, NoLock, palloc(), table_beginscan_catalog(), table_close(), table_endscan(), table_open(), TopMemoryContext, and Typ.

Referenced by boot_openrel(), and gettype().

Variable Documentation

◆ Ap

struct typmap* Ap = NULL
static

Definition at line 150 of file bootstrap.c.

Referenced by DefineAttr(), and gettype().

◆ attrtypes

Definition at line 61 of file bootstrap.c.

Referenced by boot_openrel(), BootstrapModeMain(), DefineAttr(), and InsertOneTuple().

◆ boot_reldesc

Relation boot_reldesc

◆ bootstrap_data_checksum_version

uint32 bootstrap_data_checksum_version = 0

Definition at line 44 of file bootstrap.c.

Referenced by BootstrapModeMain(), and InitControlFile().

◆ ILHead

IndexList* ILHead = NULL
static

Definition at line 171 of file bootstrap.c.

Referenced by build_indices(), and index_register().

◆ n_types

const int n_types = sizeof(TypInfo) / sizeof(struct typinfo)
static

Definition at line 141 of file bootstrap.c.

Referenced by boot_get_type_io_data(), and gettype().

◆ nogc

MemoryContext nogc = NULL
static

Definition at line 155 of file bootstrap.c.

Referenced by index_register().

◆ Nulls

◆ numattr

int numattr

Definition at line 62 of file bootstrap.c.

Referenced by boot_openrel(), InsertOneTuple(), and tsvector_update_trigger().

◆ Typ

List* Typ = NIL
static

◆ TypInfo

const struct typinfo TypInfo[]
static

Definition at line 62 of file bootstrap.c.

Referenced by boot_get_type_io_data(), DefineAttr(), and gettype().

◆ values

Datum values[MAXATTR]
static

Definition at line 152 of file bootstrap.c.

Referenced by _bt_build_callback(), _bt_check_unique(), _bt_spool(), _h_spool(), aclexplode(), add_values_to_range(), AddEnumLabel(), AddSubscriptionRelState(), AggregateCreate(), AlterCollation(), AlterDatabaseRefreshColl(), AlterObjectNamespace_internal(), AlterObjectOwner_internal(), AlterObjectRename_internal(), AlterOperator(), AlterPolicy(), AlterPublicationOptions(), AlterSetting(), AlterSubscription(), AlterTypeRecurse(), apply_returning_filter(), ApplyExtensionUpdates(), array_in(), array_iterate(), array_map(), array_out(), array_replace_internal(), blinsert(), bloomBuildCallback(), BloomFormTuple(), brin_deconstruct_tuple(), brin_deform_tuple(), brin_form_tuple(), brin_metapage_info(), brin_page_items(), brinbuildCallback(), brinbuildCallbackParallel(), brininsert(), bt_metap(), bt_multi_page_stats(), bt_page_print_tuples(), bt_page_stats_internal(), bt_tuple_present_callback(), btinsert(), build_pgstattuple_type(), build_sorted_items(), build_tuplestore_recursively(), BuildIndexValueDescription(), BuildTupleFromCStrings(), CastCreate(), CatalogIndexInsert(), check_conn_params(), check_exclusion_constraint(), check_exclusion_or_unique_constraint(), clear_subscription_skip_lsn(), CollationCreate(), collectTSQueryValues(), comparetup_index_btree_tiebreak(), compute_index_stats(), compute_partition_hash_value(), compute_scalar_stats(), connect_pg_server(), ConnectDatabase(), connectDatabase(), conninfo_array_parse(), constructConnStr(), ConversionCreate(), copy_replication_slot(), CopyArrayEls(), create_cursor(), CreateAccessMethod(), CreateComments(), CreateConstraintEntry(), CreateForeignDataWrapper(), CreateForeignServer(), CreateForeignTable(), CreateOpFamily(), CreatePolicy(), CreateProceduralLanguage(), CreatePublication(), CreateReplicationSlot(), CreateSharedComments(), CreateStatistics(), CreateSubscription(), CreateTableSpace(), CreateTransform(), CreateTriggerFiringOn(), CreateUserMapping(), crosstab(), dblink_get_notify(), dblink_get_pkey(), DefineOpClass(), DefineTSConfiguration(), DefineTSDictionary(), DefineTSParser(), DefineTSTemplate(), DisableSubscription(), DiscreteKnapsack(), do_connect(), do_text_output_multiline(), do_tup_output(), doConnect(), each_object_field_end(), each_worker_jsonb(), elements_array_element_end(), elements_worker_jsonb(), exec_move_row(), exec_move_row_from_fields(), ExecBuildAggTrans(), ExecBuildSlotPartitionKeyDescription(), ExecCheckIndexConstraints(), ExecComputeStoredGenerated(), ExecEvalMinMax(), ExecEvalXmlExpr(), ExecFilterJunk(), ExecFindPartition(), ExecGrant_Attribute(), ExecGrant_common(), ExecGrant_Largeobject(), ExecGrant_Parameter(), ExecGrant_Relation(), ExecInitExprRec(), ExecInsertIndexTuples(), execute_dml_stmt(), ExtractConnectionOptions(), ExtractReplicaIdentity(), file_acquire_sample_rows(), fill_hba_line(), fill_ident_line(), fillRelOptions(), FillXLogStatsRow(), FormIndexDatum(), FormPartitionKeyDatum(), get_actual_variable_endpoint(), get_altertable_subcmdinfo(), get_available_versions_for_extension(), get_crosstab_tuplestore(), get_matching_hash_bounds(), get_matching_range_bounds(), get_partition_for_tuple(), get_text_array_contents(), GetConfigOptionValues(), GetConnection(), GetWALBlockInfo(), GetWALRecordInfo(), GetWALRecordsInfo(), GetWalStats(), GetXLogSummaryStats(), gin_leafpage_items(), gin_metapage_info(), gin_page_opaque_info(), ginBuildCallback(), gininsert(), gist_page_items(), gist_page_items_bytea(), gist_page_opaque_info(), gistBuildCallback(), gistinsert(), gistSortedBuildCallback(), hash_bitmap_info(), hash_metapage_info(), hash_page_items(), hash_page_stats(), hash_record(), hash_record_extended(), hashbuildCallback(), hashinsert(), heap_compute_data_size(), heap_deform_tuple(), heap_fill_tuple(), heap_form_minimal_tuple(), heap_form_tuple(), heap_modify_tuple(), heap_modify_tuple_by_cols(), heap_page_items(), heap_tuple_infomask_flags(), heapam_index_build_range_scan(), heapam_index_validate_scan(), heapam_relation_copy_for_cluster(), hstore_from_record(), hstore_populate_record(), IdentifySystem(), index_concurrently_swap(), index_deform_tuple(), index_deform_tuple_internal(), index_form_tuple(), index_form_tuple_context(), index_insert(), index_truncate_tuple(), IndexCheckExclusion(), inet_hist_value_sel(), insert_event_trigger_tuple(), InsertExtensionTuple(), InsertOneNull(), InsertOneTuple(), InsertOneValue(), InsertPgClassTuple(), InsertRule(), intset_flush_buffered_values(), inv_truncate(), inv_write(), LargeObjectCreate(), libpqsrv_connect_params(), LogicalOutputWrite(), logicalrep_write_tuple(), main(), make_tuple_from_result_row(), make_tuple_indirect(), materializeResult(), minmax_multi_init(), NamespaceCreate(), ndistinct_for_combination(), NextCopyFrom(), oid_array_to_list(), OperatorCreate(), OperatorShellMake(), page_header(), ParameterAclCreate(), parse_key_value_arrays(), parseLocalRelOptions(), partition_range_datum_bsearch(), perform_pruning_base_step(), pg_armor(), pg_available_extensions(), pg_available_wal_summaries(), pg_backup_stop(), pg_buffercache_pages(), pg_buffercache_summary(), pg_config(), pg_control_checkpoint(), pg_control_init(), pg_control_recovery(), pg_control_system(), pg_create_logical_replication_slot(), pg_create_physical_replication_slot(), pg_cursor(), pg_event_trigger_ddl_commands(), pg_event_trigger_dropped_objects(), pg_extension_update_paths(), pg_get_catalog_foreign_keys(), pg_get_keywords(), pg_get_multixact_members(), pg_get_object_address(), pg_get_publication_tables(), pg_get_replication_slots(), pg_get_shmem_allocations(), pg_get_wait_events(), pg_get_wal_record_info(), pg_get_wal_resource_managers(), pg_get_wal_summarizer_state(), pg_identify_object(), pg_identify_object_as_address(), pg_input_error_info(), pg_last_committed_xact(), pg_lock_status(), pg_ls_dir(), pg_ls_dir_files(), pg_partition_tree(), pg_prepared_statement(), pg_prepared_xact(), pg_replication_slot_advance(), pg_sequence_parameters(), pg_show_replication_origin_status(), pg_split_walfile_name(), pg_stat_file(), pg_stat_get_activity(), pg_stat_get_archiver(), pg_stat_get_backend_subxact(), pg_stat_get_io(), pg_stat_get_progress_info(), pg_stat_get_recovery_prefetch(), pg_stat_get_replication_slot(), pg_stat_get_slru(), pg_stat_get_subscription(), pg_stat_get_subscription_stats(), pg_stat_get_wal(), pg_stat_get_wal_receiver(), pg_stat_get_wal_senders(), pg_stat_statements_info(), pg_stat_statements_internal(), pg_stats_ext_mcvlist_items(), pg_tablespace_databases(), pg_timezone_abbrevs(), pg_timezone_names(), pg_visibility(), pg_visibility_map(), pg_visibility_map_rel(), pg_visibility_map_summary(), pg_visibility_rel(), pg_wal_summary_contents(), pg_walfile_name_offset(), pg_xact_commit_timestamp_origin(), pgfdw_security_check(), pgp_armor_encode(), pgp_armor_headers(), pgp_extract_armor_headers(), pgrowlocks(), pgstatginindex_internal(), pgstathashindex(), pgstatindex_impl(), pgstattuple_approx_internal(), plperl_build_tuple_result(), pltcl_build_tuple_result(), PLyGenericObject_ToComposite(), PLyMapping_ToComposite(), PLySequence_ToComposite(), populate_record(), postgres_fdw_get_connections(), PQconnectdbParams(), PQconnectStartParams(), PQpingParams(), ProcedureCreate(), prs_process_call(), publication_add_relation(), publication_add_schema(), PutMemoryContextsStatsTupleStore(), RangeCreate(), ReadArrayBinary(), ReadArrayStr(), ReadReplicationSlot(), record_in(), record_out(), record_recv(), record_send(), recordExtensionInitPrivWorker(), reduce_expanded_ranges(), reform_and_rewrite_tuple(), regression_main(), RemoveRoleFromObjectPolicy(), replorigin_create(), report_corruption_internal(), SendTablespaceList(), SendXlogRecPtrResult(), serialize_expr_stats(), SetDefaultACL(), SetSecurityLabel(), SetSharedSecurityLabel(), shdepAddDependency(), shdepChangeDep(), show_all_file_settings(), show_all_settings(), ShowAllGUCConfig(), slot_deform_heap_tuple(), spginsert(), spgistBuildCallback(), split_text_accum_result(), sql_conn(), ssl_extension_info(), StartReplication(), statext_mcv_serialize(), statext_store(), StoreAttrDefault(), storeOperators(), StorePartitionKey(), storeProcedures(), StoreSingleInheritance(), test_enc_conversion(), test_huge_distances(), test_predtest(), tfuncLoadRows(), toast_build_flattened_tuple(), toast_delete_external(), TransformGUCArray(), ts_process_call(), tsvector_unnest(), tt_process_call(), tuplesort_putindextuplevalues(), tuplestore_putvalues(), TypeCreate(), TypeShellMake(), unique_key_recheck(), update_attstats(), UpdateIndexRelation(), UpdateSubscriptionRelState(), UpdateTwoPhaseState(), vacuumlo(), ValuesNext(), WaitForLockersMultiple(), and xpath_table().