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 "postmaster/postmaster.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

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 918 of file bootstrap.c.

919{
920 return (Form_pg_attribute)
922}
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition: mcxt.c:1266
MemoryContext TopMemoryContext
Definition: mcxt.c:166
#define ATTRIBUTE_FIXED_PART_SIZE
Definition: pg_attribute.h:194
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:202

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 841 of file bootstrap.c.

849{
850 if (Typ != NIL)
851 {
852 /* We have the boot-time contents of pg_type, so use it */
853 struct typmap *ap = NULL;
854 ListCell *lc;
855
856 foreach(lc, Typ)
857 {
858 ap = lfirst(lc);
859 if (ap->am_oid == typid)
860 break;
861 }
862
863 if (!ap || ap->am_oid != typid)
864 elog(ERROR, "type OID %u not found in Typ list", typid);
865
866 *typlen = ap->am_typ.typlen;
867 *typbyval = ap->am_typ.typbyval;
868 *typalign = ap->am_typ.typalign;
869 *typdelim = ap->am_typ.typdelim;
870
871 /* XXX this logic must match getTypeIOParam() */
872 if (OidIsValid(ap->am_typ.typelem))
873 *typioparam = ap->am_typ.typelem;
874 else
875 *typioparam = typid;
876
877 *typinput = ap->am_typ.typinput;
878 *typoutput = ap->am_typ.typoutput;
879 }
880 else
881 {
882 /* We don't have pg_type yet, so use the hard-wired TypInfo array */
883 int typeindex;
884
885 for (typeindex = 0; typeindex < n_types; typeindex++)
886 {
887 if (TypInfo[typeindex].oid == typid)
888 break;
889 }
890 if (typeindex >= n_types)
891 elog(ERROR, "type OID %u not found in TypInfo", typid);
892
893 *typlen = TypInfo[typeindex].len;
894 *typbyval = TypInfo[typeindex].byval;
895 *typalign = TypInfo[typeindex].align;
896 /* We assume typdelim is ',' for all boot-time types */
897 *typdelim = ',';
898
899 /* XXX this logic must match getTypeIOParam() */
900 if (OidIsValid(TypInfo[typeindex].elem))
901 *typioparam = TypInfo[typeindex].elem;
902 else
903 *typioparam = typid;
904
905 *typinput = TypInfo[typeindex].inproc;
906 *typoutput = TypInfo[typeindex].outproc;
907 }
908}
static const int n_types
Definition: bootstrap.c:144
static const struct typinfo TypInfo[]
Definition: bootstrap.c:87
static List * Typ
Definition: bootstrap.c:152
#define OidIsValid(objectId)
Definition: c.h:794
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:226
#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:80
Oid outproc
Definition: bootstrap.c:84
int16 len
Definition: bootstrap.c:78
bool byval
Definition: bootstrap.c:79
Oid elem
Definition: bootstrap.c:77
Oid inproc
Definition: bootstrap.c:83
Oid am_oid
Definition: bootstrap.c:148
FormData_pg_type am_typ
Definition: bootstrap.c:149

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 444 of file bootstrap.c.

445{
446 int i;
447
448 if (strlen(relname) >= NAMEDATALEN)
449 relname[NAMEDATALEN - 1] = '\0';
450
451 /*
452 * pg_type must be filled before any OPEN command is executed, hence we
453 * can now populate Typ if we haven't yet.
454 */
455 if (Typ == NIL)
457
458 if (boot_reldesc != NULL)
459 closerel(NULL);
460
461 elog(DEBUG4, "open relation %s, attrsize %d",
463
466 for (i = 0; i < numattr; i++)
467 {
468 if (attrtypes[i] == NULL)
470 memmove(attrtypes[i],
473
474 {
476
477 elog(DEBUG4, "create attribute %d name %s len %d num %d type %u",
478 i, NameStr(at->attname), at->attlen, at->attnum,
479 at->atttypid);
480 }
481 }
482}
void closerel(char *relname)
Definition: bootstrap.c:489
static void populate_typ_list(void)
Definition: bootstrap.c:730
Relation boot_reldesc
Definition: bootstrap.c:58
Form_pg_attribute attrtypes[MAXATTR]
Definition: bootstrap.c:60
int numattr
Definition: bootstrap.c:61
static Form_pg_attribute AllocateAttribute(void)
Definition: bootstrap.c:918
#define NameStr(name)
Definition: c.h:771
#define DEBUG4
Definition: elog.h:27
int i
Definition: isn.c:77
#define NoLock
Definition: lockdefs.h:34
RangeVar * makeRangeVar(char *schemaname, char *relname, int location)
Definition: makefuncs.c:473
NameData relname
Definition: pg_class.h:38
#define NAMEDATALEN
#define RelationGetNumberOfAttributes(relation)
Definition: rel.h:521
TupleDesc rd_att
Definition: rel.h:112
Relation table_openrv(const RangeVar *relation, LOCKMODE lockmode)
Definition: table.c:83
static FormData_pg_attribute * TupleDescAttr(TupleDesc tupdesc, int i)
Definition: tupdesc.h:160

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 417 of file bootstrap.c.

418{
420
421 /*
422 * We don't actually need any non-default signal handling in bootstrap
423 * mode; "curl up and die" is a sufficient response for all these cases.
424 * Let's set that handling explicitly, as documentation if nothing else.
425 */
426 pqsignal(SIGHUP, SIG_DFL);
427 pqsignal(SIGINT, SIG_DFL);
428 pqsignal(SIGTERM, SIG_DFL);
429 pqsignal(SIGQUIT, SIG_DFL);
430}
bool IsUnderPostmaster
Definition: globals.c:120
Assert(PointerIsAligned(start, uint64))
#define pqsignal
Definition: port.h:547
#define SIGHUP
Definition: win32_port.h:158
#define SIGQUIT
Definition: win32_port.h:159

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

Referenced by BootstrapModeMain().

◆ BootstrapModeMain()

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

Definition at line 202 of file bootstrap.c.

203{
204 int i;
205 char *progname = argv[0];
206 int flag;
207 char *userDoption = NULL;
208 uint32 bootstrap_data_checksum_version = 0; /* No checksum */
209 yyscan_t scanner;
210
212
213 InitStandaloneProcess(argv[0]);
214
215 /* Set defaults, to be overridden by explicit options below */
217
218 /* an initial --boot or --check should be present */
219 Assert(argc > 1
220 && (strcmp(argv[1], "--boot") == 0
221 || strcmp(argv[1], "--check") == 0));
222 argv++;
223 argc--;
224
225 while ((flag = getopt(argc, argv, "B:c:d:D:Fkr:X:-:")) != -1)
226 {
227 switch (flag)
228 {
229 case 'B':
230 SetConfigOption("shared_buffers", optarg, PGC_POSTMASTER, PGC_S_ARGV);
231 break;
232 case '-':
233
234 /*
235 * Error if the user misplaced a special must-be-first option
236 * for dispatching to a subprogram. parse_dispatch_option()
237 * returns DISPATCH_POSTMASTER if it doesn't find a match, so
238 * error for anything else.
239 */
242 (errcode(ERRCODE_SYNTAX_ERROR),
243 errmsg("--%s must be first argument", optarg)));
244
245 /* FALLTHROUGH */
246 case 'c':
247 {
248 char *name,
249 *value;
250
252 if (!value)
253 {
254 if (flag == '-')
256 (errcode(ERRCODE_SYNTAX_ERROR),
257 errmsg("--%s requires a value",
258 optarg)));
259 else
261 (errcode(ERRCODE_SYNTAX_ERROR),
262 errmsg("-c %s requires a value",
263 optarg)));
264 }
265
267 pfree(name);
268 pfree(value);
269 break;
270 }
271 case 'D':
273 break;
274 case 'd':
275 {
276 /* Turn on debugging for the bootstrap process. */
277 char *debugstr;
278
279 debugstr = psprintf("debug%s", optarg);
280 SetConfigOption("log_min_messages", debugstr,
282 SetConfigOption("client_min_messages", debugstr,
284 pfree(debugstr);
285 }
286 break;
287 case 'F':
288 SetConfigOption("fsync", "false", PGC_POSTMASTER, PGC_S_ARGV);
289 break;
290 case 'k':
291 bootstrap_data_checksum_version = PG_DATA_CHECKSUM_VERSION;
292 break;
293 case 'r':
295 break;
296 case 'X':
298 break;
299 default:
300 write_stderr("Try \"%s --help\" for more information.\n",
301 progname);
302 proc_exit(1);
303 break;
304 }
305 }
306
307 if (argc != optind)
308 {
309 write_stderr("%s: invalid command-line arguments\n", progname);
310 proc_exit(1);
311 }
312
313 /* Acquire configuration parameters */
315 proc_exit(1);
316
317 /*
318 * Validate we have been given a reasonable-looking DataDir and change
319 * into it
320 */
321 checkDataDir();
323
325
327 IgnoreSystemIndexes = true;
328
330
331 /*
332 * Even though bootstrapping runs in single-process mode, initialize
333 * postmaster child slots array so that --check can detect running out of
334 * shared memory or other resources if max_connections is set too high.
335 */
337
339
341
342 /*
343 * Estimate number of openable files. This is essential too in --check
344 * mode, because on some platforms semaphores count as open files.
345 */
347
348 /*
349 * XXX: It might make sense to move this into its own function at some
350 * point. Right now it seems like it'd cause more code duplication than
351 * it's worth.
352 */
353 if (check_only)
354 {
357 abort();
358 }
359
360 /*
361 * Do backend-like initialization for bootstrap mode
362 */
363 InitProcess();
364
365 BaseInit();
366
368 BootStrapXLOG(bootstrap_data_checksum_version);
369
370 /*
371 * To ensure that src/common/link-canary.c is linked into the backend, we
372 * must call it from somewhere. Here is as good as anywhere.
373 */
375 elog(ERROR, "backend is incorrectly linked to frontend functions");
376
377 InitPostgres(NULL, InvalidOid, NULL, InvalidOid, 0, NULL);
378
379 /* Initialize stuff for bootstrap-file processing */
380 for (i = 0; i < MAXATTR; i++)
381 {
382 attrtypes[i] = NULL;
383 Nulls[i] = false;
384 }
385
386 if (boot_yylex_init(&scanner) != 0)
387 elog(ERROR, "yylex_init() failed: %m");
388
389 /*
390 * Process bootstrap input.
391 */
393 boot_yyparse(scanner);
395
396 /*
397 * We should now know about all mapped relations, so it's okay to write
398 * out the initial relation mapping files.
399 */
401
402 /* Clean up and exit */
403 cleanup();
404 proc_exit(0);
405}
#define write_stderr(str)
Definition: parallel.c:186
static void CheckerModeMain(void)
Definition: bootstrap.c:184
static void cleanup(void)
Definition: bootstrap.c:717
static void bootstrap_signals(void)
Definition: bootstrap.c:417
static bool Nulls[MAXATTR]
Definition: bootstrap.c:156
int boot_yylex_init(yyscan_t *yyscannerp)
#define MAXATTR
Definition: bootstrap.h:25
int boot_yyparse(yyscan_t yyscanner)
#define PG_DATA_CHECKSUM_VERSION
Definition: bufpage.h:206
uint32_t uint32
Definition: c.h:552
void * yyscan_t
Definition: cubedata.h:65
int errcode(int sqlerrcode)
Definition: elog.c:863
int errmsg(const char *fmt,...)
Definition: elog.c:1080
#define ereport(elevel,...)
Definition: elog.h:150
void set_max_safe_fds(void)
Definition: fd.c:1041
char OutputFileName[MAXPGPATH]
Definition: globals.c:79
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Definition: guc.c:4196
bool SelectConfigFiles(const char *userDoption, const char *progname)
Definition: guc.c:1655
void ParseLongOption(const char *string, char **name, char **value)
Definition: guc.c:6205
void InitializeGUCOptions(void)
Definition: guc.c:1407
@ PGC_S_DYNAMIC_DEFAULT
Definition: guc.h:114
@ PGC_S_ARGV
Definition: guc.h:117
@ PGC_INTERNAL
Definition: guc.h:73
@ PGC_POSTMASTER
Definition: guc.h:74
static struct @171 value
void proc_exit(int code)
Definition: ipc.c:104
void CreateSharedMemoryAndSemaphores(void)
Definition: ipci.c:191
DispatchOption parse_dispatch_option(const char *name)
Definition: main.c:244
const char * progname
Definition: main.c:44
char * pstrdup(const char *in)
Definition: mcxt.c:1781
void pfree(void *pointer)
Definition: mcxt.c:1616
@ NormalProcessing
Definition: miscadmin.h:472
@ BootstrapProcessing
Definition: miscadmin.h:470
#define SetProcessingMode(mode)
Definition: miscadmin.h:483
void ChangeToDataDir(void)
Definition: miscinit.c:409
void InitStandaloneProcess(const char *argv0)
Definition: miscinit.c:175
bool IgnoreSystemIndexes
Definition: miscinit.c:81
void checkDataDir(void)
Definition: miscinit.c:296
void CreateDataDirLockFile(bool amPostmaster)
Definition: miscinit.c:1463
#define MAXPGPATH
PGDLLIMPORT int optind
Definition: getopt.c:51
int getopt(int nargc, char *const *nargv, const char *ostr)
Definition: getopt.c:72
PGDLLIMPORT char * optarg
Definition: getopt.c:53
void InitPostmasterChildSlots(void)
Definition: pmchild.c:97
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45
static const char * userDoption
Definition: postgres.c:154
#define InvalidOid
Definition: postgres_ext.h:37
void InitializeMaxBackends(void)
Definition: postinit.c:550
void BaseInit(void)
Definition: postinit.c:607
void InitializeFastPathLocks(void)
Definition: postinit.c:575
void InitPostgres(const char *in_dbname, Oid dboid, const char *username, Oid useroid, bits32 flags, char *out_dbname)
Definition: postinit.c:710
@ DISPATCH_POSTMASTER
Definition: postmaster.h:139
char * psprintf(const char *fmt,...)
Definition: psprintf.c:43
void RelationMapFinishBootstrap(void)
Definition: relmapper.c:625
void InitProcess(void)
Definition: proc.c:395
char * flag(int b)
Definition: test-ctype.c:33
const char * name
void StartTransactionCommand(void)
Definition: xact.c:3080
void CommitTransactionCommand(void)
Definition: xact.c:3178
void BootStrapXLOG(uint32 data_checksum_version)
Definition: xlog.c:5127

References Assert(), attrtypes, BaseInit(), boot_yylex_init(), boot_yyparse(), bootstrap_signals(), BootstrapProcessing, BootStrapXLOG(), ChangeToDataDir(), checkDataDir(), CheckerModeMain(), cleanup(), CommitTransactionCommand(), CreateDataDirLockFile(), CreateSharedMemoryAndSemaphores(), DISPATCH_POSTMASTER, elog, ereport, errcode(), errmsg(), ERROR, flag(), getopt(), i, IgnoreSystemIndexes, InitializeFastPathLocks(), InitializeGUCOptions(), InitializeMaxBackends(), InitPostgres(), InitPostmasterChildSlots(), InitProcess(), InitStandaloneProcess(), InvalidOid, IsUnderPostmaster, MAXATTR, MAXPGPATH, name, NormalProcessing, Nulls, optarg, optind, OutputFileName, parse_dispatch_option(), 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(), set_max_safe_fds(), SetConfigOption(), SetProcessingMode, StartTransactionCommand(), strlcpy(), userDoption, value, and write_stderr.

Referenced by main().

◆ build_indices()

void build_indices ( void  )

Definition at line 986 of file bootstrap.c.

987{
988 for (; ILHead != NULL; ILHead = ILHead->il_next)
989 {
990 Relation heap;
992
993 /* need not bother with locks during bootstrap */
996
997 index_build(heap, ind, ILHead->il_info, false, false);
998
1000 table_close(heap, NoLock);
1001 }
1002}
static IndexList * ILHead
Definition: bootstrap.c:174
void index_build(Relation heapRelation, Relation indexRelation, IndexInfo *indexInfo, bool isreindex, bool parallel)
Definition: index.c:3000
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:168
struct _IndexList * il_next
Definition: bootstrap.c:171
Oid il_ind
Definition: bootstrap.c:169
IndexInfo * il_info
Definition: bootstrap.c:170
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 184 of file bootstrap.c.

185{
186 proc_exit(0);
187}

References proc_exit().

Referenced by BootstrapModeMain().

◆ cleanup()

◆ closerel()

void closerel ( char *  relname)

Definition at line 489 of file bootstrap.c.

490{
491 if (relname)
492 {
493 if (boot_reldesc)
494 {
496 elog(ERROR, "close of %s when %s was expected",
498 }
499 else
500 elog(ERROR, "close of %s before any relation was opened",
501 relname);
502 }
503
504 if (boot_reldesc == NULL)
505 elog(ERROR, "no open relation to close");
506 else
507 {
508 elog(DEBUG4, "close relation %s",
511 boot_reldesc = NULL;
512 }
513}
#define RelationGetRelationName(relation)
Definition: rel.h:549

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 526 of file bootstrap.c.

527{
528 Oid typeoid;
529
530 if (boot_reldesc != NULL)
531 {
532 elog(WARNING, "no open relations allowed with CREATE command");
533 closerel(NULL);
534 }
535
536 if (attrtypes[attnum] == NULL)
539
541 elog(DEBUG4, "column %s %s", NameStr(attrtypes[attnum]->attname), type);
542 attrtypes[attnum]->attnum = attnum + 1;
543
544 typeoid = gettype(type);
545
546 if (Typ != NIL)
547 {
548 attrtypes[attnum]->atttypid = Ap->am_oid;
549 attrtypes[attnum]->attlen = Ap->am_typ.typlen;
550 attrtypes[attnum]->attbyval = Ap->am_typ.typbyval;
551 attrtypes[attnum]->attalign = Ap->am_typ.typalign;
552 attrtypes[attnum]->attstorage = Ap->am_typ.typstorage;
553 attrtypes[attnum]->attcompression = InvalidCompressionMethod;
554 attrtypes[attnum]->attcollation = Ap->am_typ.typcollation;
555 /* if an array type, assume 1-dimensional attribute */
556 if (Ap->am_typ.typelem != InvalidOid && Ap->am_typ.typlen < 0)
557 attrtypes[attnum]->attndims = 1;
558 else
559 attrtypes[attnum]->attndims = 0;
560 }
561 else
562 {
563 attrtypes[attnum]->atttypid = TypInfo[typeoid].oid;
564 attrtypes[attnum]->attlen = TypInfo[typeoid].len;
565 attrtypes[attnum]->attbyval = TypInfo[typeoid].byval;
566 attrtypes[attnum]->attalign = TypInfo[typeoid].align;
567 attrtypes[attnum]->attstorage = TypInfo[typeoid].storage;
568 attrtypes[attnum]->attcompression = InvalidCompressionMethod;
569 attrtypes[attnum]->attcollation = TypInfo[typeoid].collation;
570 /* if an array type, assume 1-dimensional attribute */
571 if (TypInfo[typeoid].elem != InvalidOid &&
572 attrtypes[attnum]->attlen < 0)
573 attrtypes[attnum]->attndims = 1;
574 else
575 attrtypes[attnum]->attndims = 0;
576 }
577
578 /*
579 * If a system catalog column is collation-aware, force it to use C
580 * collation, so that its behavior is independent of the database's
581 * collation. This is essential to allow template0 to be cloned with a
582 * different database collation.
583 */
584 if (OidIsValid(attrtypes[attnum]->attcollation))
585 attrtypes[attnum]->attcollation = C_COLLATION_OID;
586
587 attrtypes[attnum]->atttypmod = -1;
588 attrtypes[attnum]->attislocal = true;
589
590 if (nullness == BOOTCOL_NULL_FORCE_NOT_NULL)
591 {
592 attrtypes[attnum]->attnotnull = true;
593 }
594 else if (nullness == BOOTCOL_NULL_FORCE_NULL)
595 {
596 attrtypes[attnum]->attnotnull = false;
597 }
598 else
599 {
600 Assert(nullness == BOOTCOL_NULL_AUTO);
601
602 /*
603 * Mark as "not null" if type is fixed-width and prior columns are
604 * likewise fixed-width and not-null. This corresponds to case where
605 * column can be accessed directly via C struct declaration.
606 */
607 if (attrtypes[attnum]->attlen > 0)
608 {
609 int i;
610
611 /* check earlier attributes */
612 for (i = 0; i < attnum; i++)
613 {
614 if (attrtypes[i]->attlen <= 0 ||
616 break;
617 }
618 if (i == attnum)
619 attrtypes[attnum]->attnotnull = true;
620 }
621 }
622}
static Oid gettype(char *type)
Definition: bootstrap.c:770
static struct typmap * Ap
Definition: bootstrap.c:153
#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:1019
#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:123
unsigned int Oid
Definition: postgres_ext.h:32
Oid oid
Definition: bootstrap.c:76
Oid collation
Definition: bootstrap.c:82
char storage
Definition: bootstrap.c:81
#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 770 of file bootstrap.c.

771{
772 if (Typ != NIL)
773 {
774 ListCell *lc;
775
776 foreach(lc, Typ)
777 {
778 struct typmap *app = lfirst(lc);
779
780 if (strncmp(NameStr(app->am_typ.typname), type, NAMEDATALEN) == 0)
781 {
782 Ap = app;
783 return app->am_oid;
784 }
785 }
786
787 /*
788 * The type wasn't known; reload the pg_type contents and check again
789 * to handle composite types, added since last populating the list.
790 */
791
793 Typ = NIL;
795
796 /*
797 * Calling gettype would result in infinite recursion for types
798 * missing in pg_type, so just repeat the lookup.
799 */
800 foreach(lc, Typ)
801 {
802 struct typmap *app = lfirst(lc);
803
804 if (strncmp(NameStr(app->am_typ.typname), type, NAMEDATALEN) == 0)
805 {
806 Ap = app;
807 return app->am_oid;
808 }
809 }
810 }
811 else
812 {
813 int i;
814
815 for (i = 0; i < n_types; i++)
816 {
817 if (strncmp(type, TypInfo[i].name, NAMEDATALEN) == 0)
818 return i;
819 }
820 /* Not in TypInfo, so we'd better be able to read pg_type now */
821 elog(DEBUG4, "external type: %s", type);
823 return gettype(type);
824 }
825 elog(ERROR, "unrecognized type \"%s\"", type);
826 /* not reached, here to make compiler happy */
827 return 0;
828}
void list_free_deep(List *list)
Definition: list.c:1560

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

Referenced by DefineAttr(), and gettype().

◆ index_register()

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

Definition at line 936 of file bootstrap.c.

939{
940 IndexList *newind;
941 MemoryContext oldcxt;
942
943 /*
944 * XXX mao 10/31/92 -- don't gc index reldescs, associated info at
945 * bootstrap time. we'll declare the indexes now, but want to create them
946 * later.
947 */
948
949 if (nogc == NULL)
951 "BootstrapNoGC",
953
954 oldcxt = MemoryContextSwitchTo(nogc);
955
956 newind = palloc_object(IndexList);
957 newind->il_heap = heap;
958 newind->il_ind = ind;
960
961 memcpy(newind->il_info, indexInfo, sizeof(IndexInfo));
962 /* expressions will likely be null, but may as well copy it */
963 newind->il_info->ii_Expressions =
964 copyObject(indexInfo->ii_Expressions);
966 /* predicate will likely be null, but may as well copy it */
967 newind->il_info->ii_Predicate =
968 copyObject(indexInfo->ii_Predicate);
969 newind->il_info->ii_PredicateState = NULL;
970 /* no exclusion constraints at bootstrap time, so no need to copy */
971 Assert(indexInfo->ii_ExclusionOps == NULL);
972 Assert(indexInfo->ii_ExclusionProcs == NULL);
973 Assert(indexInfo->ii_ExclusionStrats == NULL);
974
975 newind->il_next = ILHead;
976 ILHead = newind;
977
978 MemoryContextSwitchTo(oldcxt);
979}
static MemoryContext nogc
Definition: bootstrap.c:158
#define palloc_object(type)
Definition: fe_memutils.h:74
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:160
#define copyObject(obj)
Definition: nodes.h:232
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124
uint16 * ii_ExclusionStrats
Definition: execnodes.h:192
ExprState * ii_PredicateState
Definition: execnodes.h:185
Oid * ii_ExclusionOps
Definition: execnodes.h:188
List * ii_ExpressionsState
Definition: execnodes.h:180
List * ii_Expressions
Definition: execnodes.h:178
Oid * ii_ExclusionProcs
Definition: execnodes.h:190
List * ii_Predicate
Definition: execnodes.h:183

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_object.

Referenced by index_create().

◆ InsertOneNull()

void InsertOneNull ( int  i)

Definition at line 699 of file bootstrap.c.

700{
701 elog(DEBUG4, "inserting column %d NULL", i);
702 Assert(i >= 0 && i < MAXATTR);
703 if (TupleDescAttr(boot_reldesc->rd_att, i)->attnotnull)
704 elog(ERROR,
705 "NULL value specified for not-null column \"%s\" of relation \"%s\"",
708 values[i] = PointerGetDatum(NULL);
709 Nulls[i] = true;
710}
static Datum values[MAXATTR]
Definition: bootstrap.c:155
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:352

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 633 of file bootstrap.c.

634{
635 HeapTuple tuple;
636 TupleDesc tupDesc;
637 int i;
638
639 elog(DEBUG4, "inserting row with %d columns", numattr);
640
642 tuple = heap_form_tuple(tupDesc, values, Nulls);
643 pfree(tupDesc); /* just free's tupDesc, not the attrtypes */
644
646 heap_freetuple(tuple);
647 elog(DEBUG4, "row inserted");
648
649 /*
650 * Reset null markers for next tuple
651 */
652 for (i = 0; i < numattr; i++)
653 Nulls[i] = false;
654}
void simple_heap_insert(Relation relation, HeapTuple tup)
Definition: heapam.c:2749
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
Definition: heaptuple.c:1117
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1435
TupleDesc CreateTupleDesc(int natts, Form_pg_attribute *attrs)
Definition: tupdesc.c:229

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 661 of file bootstrap.c.

662{
663 Oid typoid;
664 int16 typlen;
665 bool typbyval;
666 char typalign;
667 char typdelim;
668 Oid typioparam;
669 Oid typinput;
670 Oid typoutput;
671
672 Assert(i >= 0 && i < MAXATTR);
673
674 elog(DEBUG4, "inserting column %d value \"%s\"", i, value);
675
676 typoid = TupleDescAttr(boot_reldesc->rd_att, i)->atttypid;
677
679 &typlen, &typbyval, &typalign,
680 &typdelim, &typioparam,
681 &typinput, &typoutput);
682
683 values[i] = OidInputFunctionCall(typinput, value, typioparam, -1);
684
685 /*
686 * We use ereport not elog here so that parameters aren't evaluated unless
687 * the message is going to be printed, which generally it isn't
688 */
690 (errmsg_internal("inserted -> %s",
691 OidOutputFunctionCall(typoutput, values[i]))));
692}
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:841
int16_t int16
Definition: c.h:547
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1170
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 730 of file bootstrap.c.

731{
732 Relation rel;
733 TableScanDesc scan;
734 HeapTuple tup;
735 MemoryContext old;
736
737 Assert(Typ == NIL);
738
739 rel = table_open(TypeRelationId, NoLock);
740 scan = table_beginscan_catalog(rel, 0, NULL);
742 while ((tup = heap_getnext(scan, ForwardScanDirection)) != NULL)
743 {
744 Form_pg_type typForm = (Form_pg_type) GETSTRUCT(tup);
745 struct typmap *newtyp;
746
747 newtyp = palloc_object(struct typmap);
748 Typ = lappend(Typ, newtyp);
749
750 newtyp->am_oid = typForm->oid;
751 memcpy(&newtyp->am_typ, typForm, sizeof(newtyp->am_typ));
752 }
754 table_endscan(scan);
755 table_close(rel, NoLock);
756}
HeapTuple heap_getnext(TableScanDesc sscan, ScanDirection direction)
Definition: heapam.c:1364
static void * GETSTRUCT(const HeapTupleData *tuple)
Definition: htup_details.h:728
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, ScanKeyData *key)
Definition: tableam.c:113
static void table_endscan(TableScanDesc scan)
Definition: tableam.h:985

References typmap::am_oid, typmap::am_typ, Assert(), ForwardScanDirection, GETSTRUCT(), heap_getnext(), lappend(), MemoryContextSwitchTo(), NIL, NoLock, palloc_object, 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 153 of file bootstrap.c.

Referenced by DefineAttr(), and gettype().

◆ attrtypes

Definition at line 60 of file bootstrap.c.

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

◆ boot_reldesc

Relation boot_reldesc

◆ ILHead

IndexList* ILHead = NULL
static

Definition at line 174 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 144 of file bootstrap.c.

Referenced by boot_get_type_io_data(), and gettype().

◆ nogc

MemoryContext nogc = NULL
static

Definition at line 158 of file bootstrap.c.

Referenced by index_register().

◆ Nulls

◆ numattr

int numattr

Definition at line 61 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 87 of file bootstrap.c.

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

◆ values

Datum values[MAXATTR]
static

Definition at line 155 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(), attribute_statistics_update(), 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_index_value_desc(), 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(), convert_VALUES_to_ANY(), copy_replication_slot(), CopyArrayEls(), CopyFromBinaryOneRow(), CopyFromCSVOneRow(), CopyFromTextLikeOneRow(), CopyFromTextOneRow(), 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(), ginBuildCallbackParallel(), 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(), injection_points_list(), 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(), materializeQueryResult(), 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_evict(), pg_buffercache_evict_all(), pg_buffercache_evict_relation(), pg_buffercache_mark_dirty(), pg_buffercache_mark_dirty_all(), pg_buffercache_mark_dirty_relation(), pg_buffercache_os_pages_internal(), 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_aios(), pg_get_catalog_foreign_keys(), pg_get_keywords(), pg_get_loaded_modules(), pg_get_logical_snapshot_info(), pg_get_logical_snapshot_meta(), pg_get_multixact_members(), pg_get_multixact_stats(), pg_get_object_address(), pg_get_publication_tables(), pg_get_replication_slots(), pg_get_sequence_data(), pg_get_shmem_allocations(), pg_get_shmem_allocations_numa(), 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_options_to_table(), 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_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_receiver(), pg_stat_get_wal_senders(), pg_stat_io_build_tuples(), pg_stat_statements_info(), pg_stat_statements_internal(), pg_stat_wal_build_tuple(), pg_stats_ext_mcvlist_items(), pg_tablespace_databases(), pg_timezone_abbrevs_abbrevs(), pg_timezone_abbrevs_zone(), 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_has_required_scram_options(), 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(), PLy_cursor_plan(), PLy_spi_execute_plan(), PLyGenericObject_ToComposite(), PLyMapping_ToComposite(), PLySequence_ToComposite(), populate_record(), postgres_fdw_get_connections_internal(), 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(), relation_statistics_update(), RemoveRoleFromInitPriv(), RemoveRoleFromObjectPolicy(), ReplaceRoleInInitPriv(), 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_internal(), spginsert(), spgistBuildCallback(), split_text_accum_result(), sql_conn(), ssl_extension_info(), StartReplication(), statatt_init_empty_tuple(), statatt_set_slot(), statext_mcv_serialize(), statext_store(), StoreAttrDefault(), storeOperators(), StorePartitionKey(), storeProcedures(), StoreSingleInheritance(), test_custom_stats_fixed_report(), test_custom_stats_var_report(), 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(), UpdateDeadTupleRetentionStatus(), UpdateIndexRelation(), UpdateSubscriptionRelState(), UpdateTwoPhaseState(), upsert_pg_statistic(), vacuumlo(), ValuesNext(), WaitForLockersMultiple(), and xpath_table().