PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
tcopprot.h File Reference
#include "nodes/params.h"
#include "nodes/plannodes.h"
#include "storage/procsignal.h"
#include "utils/guc.h"
#include "utils/queryenvironment.h"
Include dependency graph for tcopprot.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define RESTRICT_RELKIND_VIEW   0x01
 
#define RESTRICT_RELKIND_FOREIGN_TABLE   0x02
 

Enumerations

enum  LogStmtLevel { LOGSTMT_NONE , LOGSTMT_DDL , LOGSTMT_MOD , LOGSTMT_ALL }
 

Functions

Listpg_parse_query (const char *query_string)
 
Listpg_rewrite_query (Query *query)
 
Listpg_analyze_and_rewrite_fixedparams (RawStmt *parsetree, const char *query_string, const Oid *paramTypes, int numParams, QueryEnvironment *queryEnv)
 
Listpg_analyze_and_rewrite_varparams (RawStmt *parsetree, const char *query_string, Oid **paramTypes, int *numParams, QueryEnvironment *queryEnv)
 
Listpg_analyze_and_rewrite_withcb (RawStmt *parsetree, const char *query_string, ParserSetupHook parserSetup, void *parserSetupArg, QueryEnvironment *queryEnv)
 
PlannedStmtpg_plan_query (Query *querytree, const char *query_string, int cursorOptions, ParamListInfo boundParams)
 
Listpg_plan_queries (List *querytrees, const char *query_string, int cursorOptions, ParamListInfo boundParams)
 
void die (SIGNAL_ARGS)
 
pg_noreturn void quickdie (SIGNAL_ARGS)
 
void StatementCancelHandler (SIGNAL_ARGS)
 
pg_noreturn void FloatExceptionHandler (SIGNAL_ARGS)
 
void HandleRecoveryConflictInterrupt (ProcSignalReason reason)
 
void ProcessClientReadInterrupt (bool blocked)
 
void ProcessClientWriteInterrupt (bool blocked)
 
void process_postgres_switches (int argc, char *argv[], GucContext ctx, const char **dbname)
 
pg_noreturn void PostgresSingleUserMain (int argc, char *argv[], const char *username)
 
pg_noreturn void PostgresMain (const char *dbname, const char *username)
 
void ResetUsage (void)
 
void ShowUsage (const char *title)
 
int check_log_duration (char *msec_str, bool was_logged)
 
void set_debug_options (int debug_flag, GucContext context, GucSource source)
 
bool set_plan_disabling_options (const char *arg, GucContext context, GucSource source)
 
const char * get_stats_option_name (const char *arg)
 

Variables

PGDLLIMPORT CommandDest whereToSendOutput
 
PGDLLIMPORT const char * debug_query_string
 
PGDLLIMPORT int PostAuthDelay
 
PGDLLIMPORT int client_connection_check_interval
 
PGDLLIMPORT bool Log_disconnections
 
PGDLLIMPORT int log_statement
 
PGDLLIMPORT int restrict_nonsystem_relation_kind
 

Macro Definition Documentation

◆ RESTRICT_RELKIND_FOREIGN_TABLE

#define RESTRICT_RELKIND_FOREIGN_TABLE   0x02

Definition at line 44 of file tcopprot.h.

◆ RESTRICT_RELKIND_VIEW

#define RESTRICT_RELKIND_VIEW   0x01

Definition at line 43 of file tcopprot.h.

Enumeration Type Documentation

◆ LogStmtLevel

Enumerator
LOGSTMT_NONE 
LOGSTMT_DDL 
LOGSTMT_MOD 
LOGSTMT_ALL 

Definition at line 31 of file tcopprot.h.

32{
33 LOGSTMT_NONE, /* log no statements */
34 LOGSTMT_DDL, /* log data definition statements */
35 LOGSTMT_MOD, /* log modification statements, plus DDL */
36 LOGSTMT_ALL, /* log all statements */
LogStmtLevel
Definition: tcopprot.h:32
@ LOGSTMT_NONE
Definition: tcopprot.h:33
@ LOGSTMT_MOD
Definition: tcopprot.h:35
@ LOGSTMT_DDL
Definition: tcopprot.h:34
@ LOGSTMT_ALL
Definition: tcopprot.h:36

Function Documentation

◆ check_log_duration()

int check_log_duration ( char *  msec_str,
bool  was_logged 
)

Definition at line 2423 of file postgres.c.

2424{
2427 {
2428 long secs;
2429 int usecs;
2430 int msecs;
2431 bool exceeded_duration;
2432 bool exceeded_sample_duration;
2433 bool in_sample = false;
2434
2437 &secs, &usecs);
2438 msecs = usecs / 1000;
2439
2440 /*
2441 * This odd-looking test for log_min_duration_* being exceeded is
2442 * designed to avoid integer overflow with very long durations: don't
2443 * compute secs * 1000 until we've verified it will fit in int.
2444 */
2445 exceeded_duration = (log_min_duration_statement == 0 ||
2447 (secs > log_min_duration_statement / 1000 ||
2448 secs * 1000 + msecs >= log_min_duration_statement)));
2449
2450 exceeded_sample_duration = (log_min_duration_sample == 0 ||
2452 (secs > log_min_duration_sample / 1000 ||
2453 secs * 1000 + msecs >= log_min_duration_sample)));
2454
2455 /*
2456 * Do not log if log_statement_sample_rate = 0. Log a sample if
2457 * log_statement_sample_rate <= 1 and avoid unnecessary PRNG call if
2458 * log_statement_sample_rate = 1.
2459 */
2460 if (exceeded_sample_duration)
2461 in_sample = log_statement_sample_rate != 0 &&
2464
2465 if (exceeded_duration || in_sample || log_duration || xact_is_sampled)
2466 {
2467 snprintf(msec_str, 32, "%ld.%03d",
2468 secs * 1000 + msecs, usecs % 1000);
2469 if ((exceeded_duration || in_sample || xact_is_sampled) && !was_logged)
2470 return 2;
2471 else
2472 return 1;
2473 }
2474 }
2475
2476 return 0;
2477}
void TimestampDifference(TimestampTz start_time, TimestampTz stop_time, long *secs, int *microsecs)
Definition: timestamp.c:1721
TimestampTz GetCurrentTimestamp(void)
Definition: timestamp.c:1645
int log_min_duration_statement
Definition: guc_tables.c:542
int log_min_duration_sample
Definition: guc_tables.c:541
double log_statement_sample_rate
Definition: guc_tables.c:546
bool log_duration
Definition: guc_tables.c:507
double pg_prng_double(pg_prng_state *state)
Definition: pg_prng.c:268
pg_prng_state pg_global_prng_state
Definition: pg_prng.c:34
#define snprintf
Definition: port.h:239
TimestampTz GetCurrentStatementStartTimestamp(void)
Definition: xact.c:879
bool xact_is_sampled
Definition: xact.c:296

References GetCurrentStatementStartTimestamp(), GetCurrentTimestamp(), log_duration, log_min_duration_sample, log_min_duration_statement, log_statement_sample_rate, pg_global_prng_state, pg_prng_double(), snprintf, TimestampDifference(), and xact_is_sampled.

Referenced by exec_bind_message(), exec_execute_message(), exec_parse_message(), exec_simple_query(), and HandleFunctionRequest().

◆ die()

void die ( SIGNAL_ARGS  )

Definition at line 3026 of file postgres.c.

3027{
3028 /* Don't joggle the elbow of proc_exit */
3030 {
3031 InterruptPending = true;
3032 ProcDiePending = true;
3033 }
3034
3035 /* for the cumulative stats system */
3037
3038 /* If we're still here, waken anything waiting on the process latch */
3040
3041 /*
3042 * If we're in single user mode, we want to quit immediately - we can't
3043 * rely on latches as they wouldn't work when stdin/stdout is a file.
3044 * Rather ugly, but it's unlikely to be worthwhile to invest much more
3045 * effort just for the benefit of single user mode.
3046 */
3049}
@ DestRemote
Definition: dest.h:89
volatile sig_atomic_t InterruptPending
Definition: globals.c:32
struct Latch * MyLatch
Definition: globals.c:63
volatile sig_atomic_t ProcDiePending
Definition: globals.c:34
bool proc_exit_inprogress
Definition: ipc.c:40
void SetLatch(Latch *latch)
Definition: latch.c:288
@ DISCONNECT_KILLED
Definition: pgstat.h:58
SessionEndType pgStatSessionEndCause
CommandDest whereToSendOutput
Definition: postgres.c:91
static bool DoingCommandRead
Definition: postgres.c:136
void ProcessInterrupts(void)
Definition: postgres.c:3298

References DestRemote, DISCONNECT_KILLED, DoingCommandRead, InterruptPending, MyLatch, pgStatSessionEndCause, proc_exit_inprogress, ProcDiePending, ProcessInterrupts(), SetLatch(), and whereToSendOutput.

Referenced by PostgresMain().

◆ FloatExceptionHandler()

pg_noreturn void FloatExceptionHandler ( SIGNAL_ARGS  )

Definition at line 3073 of file postgres.c.

3074{
3075 /* We're not returning, so no need to save errno */
3076 ereport(ERROR,
3077 (errcode(ERRCODE_FLOATING_POINT_EXCEPTION),
3078 errmsg("floating-point exception"),
3079 errdetail("An invalid floating-point operation was signaled. "
3080 "This probably means an out-of-range result or an "
3081 "invalid operation, such as division by zero.")));
3082}
int errdetail(const char *fmt,...)
Definition: elog.c:1204
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149

References ereport, errcode(), errdetail(), errmsg(), and ERROR.

Referenced by AutoVacLauncherMain(), AutoVacWorkerMain(), BackgroundWorkerMain(), plperl_init_interp(), PostgresMain(), and ReplSlotSyncWorkerMain().

◆ get_stats_option_name()

const char * get_stats_option_name ( const char *  arg)

Definition at line 3750 of file postgres.c.

3751{
3752 switch (arg[0])
3753 {
3754 case 'p':
3755 if (optarg[1] == 'a') /* "parser" */
3756 return "log_parser_stats";
3757 else if (optarg[1] == 'l') /* "planner" */
3758 return "log_planner_stats";
3759 break;
3760
3761 case 'e': /* "executor" */
3762 return "log_executor_stats";
3763 break;
3764 }
3765
3766 return NULL;
3767}
void * arg
PGDLLIMPORT char * optarg
Definition: getopt.c:53

References arg, and optarg.

Referenced by PostmasterMain(), and process_postgres_switches().

◆ HandleRecoveryConflictInterrupt()

void HandleRecoveryConflictInterrupt ( ProcSignalReason  reason)

Definition at line 3089 of file postgres.c.

3090{
3091 RecoveryConflictPendingReasons[reason] = true;
3093 InterruptPending = true;
3094 /* latch will be set by procsignal_sigusr1_handler */
3095}
static volatile sig_atomic_t RecoveryConflictPendingReasons[NUM_PROCSIGNALS]
Definition: postgres.c:159
static volatile sig_atomic_t RecoveryConflictPending
Definition: postgres.c:158

References InterruptPending, RecoveryConflictPending, and RecoveryConflictPendingReasons.

Referenced by procsignal_sigusr1_handler().

◆ pg_analyze_and_rewrite_fixedparams()

List * pg_analyze_and_rewrite_fixedparams ( RawStmt parsetree,
const char *  query_string,
const Oid paramTypes,
int  numParams,
QueryEnvironment queryEnv 
)

Definition at line 665 of file postgres.c.

670{
671 Query *query;
672 List *querytree_list;
673
674 TRACE_POSTGRESQL_QUERY_REWRITE_START(query_string);
675
676 /*
677 * (1) Perform parse analysis.
678 */
680 ResetUsage();
681
682 query = parse_analyze_fixedparams(parsetree, query_string, paramTypes, numParams,
683 queryEnv);
684
686 ShowUsage("PARSE ANALYSIS STATISTICS");
687
688 /*
689 * (2) Rewrite the queries, as necessary
690 */
691 querytree_list = pg_rewrite_query(query);
692
693 TRACE_POSTGRESQL_QUERY_REWRITE_DONE(query_string);
694
695 return querytree_list;
696}
bool log_parser_stats
Definition: guc_tables.c:519
Query * parse_analyze_fixedparams(RawStmt *parseTree, const char *sourceText, const Oid *paramTypes, int numParams, QueryEnvironment *queryEnv)
Definition: analyze.c:105
List * pg_rewrite_query(Query *query)
Definition: postgres.c:798
void ShowUsage(const char *title)
Definition: postgres.c:5059
void ResetUsage(void)
Definition: postgres.c:5052
Definition: pg_list.h:54

References log_parser_stats, parse_analyze_fixedparams(), pg_rewrite_query(), ResetUsage(), and ShowUsage().

Referenced by _SPI_execute_plan(), _SPI_prepare_plan(), BeginCopyTo(), exec_simple_query(), execute_sql_string(), and RevalidateCachedQuery().

◆ pg_analyze_and_rewrite_varparams()

List * pg_analyze_and_rewrite_varparams ( RawStmt parsetree,
const char *  query_string,
Oid **  paramTypes,
int *  numParams,
QueryEnvironment queryEnv 
)

Definition at line 704 of file postgres.c.

709{
710 Query *query;
711 List *querytree_list;
712
713 TRACE_POSTGRESQL_QUERY_REWRITE_START(query_string);
714
715 /*
716 * (1) Perform parse analysis.
717 */
719 ResetUsage();
720
721 query = parse_analyze_varparams(parsetree, query_string, paramTypes, numParams,
722 queryEnv);
723
724 /*
725 * Check all parameter types got determined.
726 */
727 for (int i = 0; i < *numParams; i++)
728 {
729 Oid ptype = (*paramTypes)[i];
730
731 if (ptype == InvalidOid || ptype == UNKNOWNOID)
733 (errcode(ERRCODE_INDETERMINATE_DATATYPE),
734 errmsg("could not determine data type of parameter $%d",
735 i + 1)));
736 }
737
739 ShowUsage("PARSE ANALYSIS STATISTICS");
740
741 /*
742 * (2) Rewrite the queries, as necessary
743 */
744 querytree_list = pg_rewrite_query(query);
745
746 TRACE_POSTGRESQL_QUERY_REWRITE_DONE(query_string);
747
748 return querytree_list;
749}
int i
Definition: isn.c:77
Query * parse_analyze_varparams(RawStmt *parseTree, const char *sourceText, Oid **paramTypes, int *numParams, QueryEnvironment *queryEnv)
Definition: analyze.c:145
#define InvalidOid
Definition: postgres_ext.h:35
unsigned int Oid
Definition: postgres_ext.h:30

References ereport, errcode(), errmsg(), ERROR, i, InvalidOid, log_parser_stats, parse_analyze_varparams(), pg_rewrite_query(), ResetUsage(), and ShowUsage().

Referenced by exec_parse_message(), and PrepareQuery().

◆ pg_analyze_and_rewrite_withcb()

List * pg_analyze_and_rewrite_withcb ( RawStmt parsetree,
const char *  query_string,
ParserSetupHook  parserSetup,
void *  parserSetupArg,
QueryEnvironment queryEnv 
)

Definition at line 758 of file postgres.c.

763{
764 Query *query;
765 List *querytree_list;
766
767 TRACE_POSTGRESQL_QUERY_REWRITE_START(query_string);
768
769 /*
770 * (1) Perform parse analysis.
771 */
773 ResetUsage();
774
775 query = parse_analyze_withcb(parsetree, query_string, parserSetup, parserSetupArg,
776 queryEnv);
777
779 ShowUsage("PARSE ANALYSIS STATISTICS");
780
781 /*
782 * (2) Rewrite the queries, as necessary
783 */
784 querytree_list = pg_rewrite_query(query);
785
786 TRACE_POSTGRESQL_QUERY_REWRITE_DONE(query_string);
787
788 return querytree_list;
789}
Query * parse_analyze_withcb(RawStmt *parseTree, const char *sourceText, ParserSetupHook parserSetup, void *parserSetupArg, QueryEnvironment *queryEnv)
Definition: analyze.c:186

References log_parser_stats, parse_analyze_withcb(), pg_rewrite_query(), ResetUsage(), and ShowUsage().

Referenced by _SPI_execute_plan(), _SPI_prepare_plan(), fmgr_sql_validator(), inline_set_returning_function(), prepare_next_query(), and RevalidateCachedQuery().

◆ pg_parse_query()

List * pg_parse_query ( const char *  query_string)

Definition at line 603 of file postgres.c.

604{
605 List *raw_parsetree_list;
606
607 TRACE_POSTGRESQL_QUERY_PARSE_START(query_string);
608
610 ResetUsage();
611
612 raw_parsetree_list = raw_parser(query_string, RAW_PARSE_DEFAULT);
613
615 ShowUsage("PARSER STATISTICS");
616
617#ifdef DEBUG_NODE_TESTS_ENABLED
618
619 /* Optional debugging check: pass raw parsetrees through copyObject() */
620 if (Debug_copy_parse_plan_trees)
621 {
622 List *new_list = copyObject(raw_parsetree_list);
623
624 /* This checks both copyObject() and the equal() routines... */
625 if (!equal(new_list, raw_parsetree_list))
626 elog(WARNING, "copyObject() failed to produce an equal raw parse tree");
627 else
628 raw_parsetree_list = new_list;
629 }
630
631 /*
632 * Optional debugging check: pass raw parsetrees through
633 * outfuncs/readfuncs
634 */
635 if (Debug_write_read_parse_plan_trees)
636 {
637 char *str = nodeToStringWithLocations(raw_parsetree_list);
638 List *new_list = stringToNodeWithLocations(str);
639
640 pfree(str);
641 /* This checks both outfuncs/readfuncs and the equal() routines... */
642 if (!equal(new_list, raw_parsetree_list))
643 elog(WARNING, "outfuncs/readfuncs failed to produce an equal raw parse tree");
644 else
645 raw_parsetree_list = new_list;
646 }
647
648#endif /* DEBUG_NODE_TESTS_ENABLED */
649
650 TRACE_POSTGRESQL_QUERY_PARSE_DONE(query_string);
651
652 return raw_parsetree_list;
653}
List * raw_parser(const char *str, RawParseMode mode)
Definition: parser.c:42
#define WARNING
Definition: elog.h:36
#define elog(elevel,...)
Definition: elog.h:225
bool equal(const void *a, const void *b)
Definition: equalfuncs.c:223
const char * str
static List * new_list(NodeTag type, int min_size)
Definition: list.c:91
void pfree(void *pointer)
Definition: mcxt.c:1528
#define copyObject(obj)
Definition: nodes.h:230
char * nodeToStringWithLocations(const void *obj)
Definition: outfuncs.c:803
@ RAW_PARSE_DEFAULT
Definition: parser.h:39

References copyObject, elog, equal(), log_parser_stats, new_list(), nodeToStringWithLocations(), pfree(), RAW_PARSE_DEFAULT, raw_parser(), ResetUsage(), ShowUsage(), str, and WARNING.

Referenced by exec_parse_message(), exec_simple_query(), execute_sql_string(), fmgr_sql_validator(), ImportForeignSchema(), inline_function(), inline_set_returning_function(), and sql_compile_callback().

◆ pg_plan_queries()

List * pg_plan_queries ( List querytrees,
const char *  query_string,
int  cursorOptions,
ParamListInfo  boundParams 
)

Definition at line 970 of file postgres.c.

972{
973 List *stmt_list = NIL;
974 ListCell *query_list;
975
976 foreach(query_list, querytrees)
977 {
978 Query *query = lfirst_node(Query, query_list);
980
981 if (query->commandType == CMD_UTILITY)
982 {
983 /* Utility commands require no planning. */
985 stmt->commandType = CMD_UTILITY;
986 stmt->canSetTag = query->canSetTag;
987 stmt->utilityStmt = query->utilityStmt;
988 stmt->stmt_location = query->stmt_location;
989 stmt->stmt_len = query->stmt_len;
990 stmt->queryId = query->queryId;
991 }
992 else
993 {
994 stmt = pg_plan_query(query, query_string, cursorOptions,
995 boundParams);
996 }
997
998 stmt_list = lappend(stmt_list, stmt);
999 }
1000
1001 return stmt_list;
1002}
#define stmt
Definition: indent_codes.h:59
List * lappend(List *list, void *datum)
Definition: list.c:339
@ CMD_UTILITY
Definition: nodes.h:276
#define makeNode(_type_)
Definition: nodes.h:161
#define lfirst_node(type, lc)
Definition: pg_list.h:176
#define NIL
Definition: pg_list.h:68
PlannedStmt * pg_plan_query(Query *querytree, const char *query_string, int cursorOptions, ParamListInfo boundParams)
Definition: postgres.c:882
CmdType commandType
Definition: parsenodes.h:121
Node * utilityStmt
Definition: parsenodes.h:136
ParseLoc stmt_location
Definition: parsenodes.h:249

References CMD_UTILITY, Query::commandType, lappend(), lfirst_node, makeNode, NIL, pg_plan_query(), stmt, Query::stmt_location, and Query::utilityStmt.

Referenced by BuildCachedPlan(), exec_simple_query(), and execute_sql_string().

◆ pg_plan_query()

PlannedStmt * pg_plan_query ( Query querytree,
const char *  query_string,
int  cursorOptions,
ParamListInfo  boundParams 
)

Definition at line 882 of file postgres.c.

884{
886
887 /* Utility commands have no plans. */
888 if (querytree->commandType == CMD_UTILITY)
889 return NULL;
890
891 /* Planner must have a snapshot in case it calls user-defined functions. */
893
894 TRACE_POSTGRESQL_QUERY_PLAN_START();
895
897 ResetUsage();
898
899 /* call the optimizer */
900 plan = planner(querytree, query_string, cursorOptions, boundParams);
901
903 ShowUsage("PLANNER STATISTICS");
904
905#ifdef DEBUG_NODE_TESTS_ENABLED
906
907 /* Optional debugging check: pass plan tree through copyObject() */
908 if (Debug_copy_parse_plan_trees)
909 {
910 PlannedStmt *new_plan = copyObject(plan);
911
912 /*
913 * equal() currently does not have routines to compare Plan nodes, so
914 * don't try to test equality here. Perhaps fix someday?
915 */
916#ifdef NOT_USED
917 /* This checks both copyObject() and the equal() routines... */
918 if (!equal(new_plan, plan))
919 elog(WARNING, "copyObject() failed to produce an equal plan tree");
920 else
921#endif
922 plan = new_plan;
923 }
924
925 /* Optional debugging check: pass plan tree through outfuncs/readfuncs */
926 if (Debug_write_read_parse_plan_trees)
927 {
928 char *str;
929 PlannedStmt *new_plan;
930
932 new_plan = stringToNodeWithLocations(str);
933 pfree(str);
934
935 /*
936 * equal() currently does not have routines to compare Plan nodes, so
937 * don't try to test equality here. Perhaps fix someday?
938 */
939#ifdef NOT_USED
940 /* This checks both outfuncs/readfuncs and the equal() routines... */
941 if (!equal(new_plan, plan))
942 elog(WARNING, "outfuncs/readfuncs failed to produce an equal plan tree");
943 else
944#endif
945 plan = new_plan;
946 }
947
948#endif /* DEBUG_NODE_TESTS_ENABLED */
949
950 /*
951 * Print plan if debugging.
952 */
955
956 TRACE_POSTGRESQL_QUERY_PLAN_DONE();
957
958 return plan;
959}
Datum querytree(PG_FUNCTION_ARGS)
Definition: _int_bool.c:665
void elog_node_display(int lev, const char *title, const void *obj, bool pretty)
Definition: print.c:72
#define LOG
Definition: elog.h:31
bool Debug_print_plan
Definition: guc_tables.c:508
bool Debug_pretty_print
Definition: guc_tables.c:511
bool log_planner_stats
Definition: guc_tables.c:520
Assert(PointerIsAligned(start, uint64))
#define plan(x)
Definition: pg_regress.c:161
PlannedStmt * planner(Query *parse, const char *query_string, int cursorOptions, ParamListInfo boundParams)
Definition: planner.c:286
bool ActiveSnapshotSet(void)
Definition: snapmgr.c:799

References ActiveSnapshotSet(), Assert(), CMD_UTILITY, copyObject, Debug_pretty_print, Debug_print_plan, elog, elog_node_display(), equal(), LOG, log_planner_stats, nodeToStringWithLocations(), pfree(), plan, planner(), querytree(), ResetUsage(), ShowUsage(), str, and WARNING.

Referenced by BeginCopyTo(), ExecCreateTableAs(), PerformCursorOpen(), pg_plan_queries(), refresh_matview_datafill(), and standard_ExplainOneQuery().

◆ pg_rewrite_query()

List * pg_rewrite_query ( Query query)

Definition at line 798 of file postgres.c.

799{
800 List *querytree_list;
801
803 elog_node_display(LOG, "parse tree", query,
805
807 ResetUsage();
808
809 if (query->commandType == CMD_UTILITY)
810 {
811 /* don't rewrite utilities, just dump 'em into result list */
812 querytree_list = list_make1(query);
813 }
814 else
815 {
816 /* rewrite regular queries */
817 querytree_list = QueryRewrite(query);
818 }
819
821 ShowUsage("REWRITER STATISTICS");
822
823#ifdef DEBUG_NODE_TESTS_ENABLED
824
825 /* Optional debugging check: pass querytree through copyObject() */
826 if (Debug_copy_parse_plan_trees)
827 {
828 List *new_list;
829
830 new_list = copyObject(querytree_list);
831 /* This checks both copyObject() and the equal() routines... */
832 if (!equal(new_list, querytree_list))
833 elog(WARNING, "copyObject() failed to produce an equal rewritten parse tree");
834 else
835 querytree_list = new_list;
836 }
837
838 /* Optional debugging check: pass querytree through outfuncs/readfuncs */
839 if (Debug_write_read_parse_plan_trees)
840 {
841 List *new_list = NIL;
842 ListCell *lc;
843
844 foreach(lc, querytree_list)
845 {
846 Query *curr_query = lfirst_node(Query, lc);
847 char *str = nodeToStringWithLocations(curr_query);
848 Query *new_query = stringToNodeWithLocations(str);
849
850 /*
851 * queryId is not saved in stored rules, but we must preserve it
852 * here to avoid breaking pg_stat_statements.
853 */
854 new_query->queryId = curr_query->queryId;
855
856 new_list = lappend(new_list, new_query);
857 pfree(str);
858 }
859
860 /* This checks both outfuncs/readfuncs and the equal() routines... */
861 if (!equal(new_list, querytree_list))
862 elog(WARNING, "outfuncs/readfuncs failed to produce an equal rewritten parse tree");
863 else
864 querytree_list = new_list;
865 }
866
867#endif /* DEBUG_NODE_TESTS_ENABLED */
868
870 elog_node_display(LOG, "rewritten parse tree", querytree_list,
872
873 return querytree_list;
874}
bool Debug_print_rewritten
Definition: guc_tables.c:510
bool Debug_print_parse
Definition: guc_tables.c:509
#define list_make1(x1)
Definition: pg_list.h:212
List * QueryRewrite(Query *parsetree)

References CMD_UTILITY, Query::commandType, copyObject, Debug_pretty_print, Debug_print_parse, Debug_print_rewritten, elog, elog_node_display(), equal(), lappend(), lfirst_node, list_make1, LOG, log_parser_stats, new_list(), NIL, nodeToStringWithLocations(), pfree(), QueryRewrite(), ResetUsage(), ShowUsage(), str, and WARNING.

Referenced by fmgr_sql_validator(), inline_set_returning_function(), pg_analyze_and_rewrite_fixedparams(), pg_analyze_and_rewrite_varparams(), pg_analyze_and_rewrite_withcb(), prepare_next_query(), and RevalidateCachedQuery().

◆ PostgresMain()

pg_noreturn void PostgresMain ( const char *  dbname,
const char *  username 
)

Definition at line 4184 of file postgres.c.

4185{
4186 sigjmp_buf local_sigjmp_buf;
4187
4188 /* these must be volatile to ensure state is preserved across longjmp: */
4189 volatile bool send_ready_for_query = true;
4190 volatile bool idle_in_transaction_timeout_enabled = false;
4191 volatile bool idle_session_timeout_enabled = false;
4192
4193 Assert(dbname != NULL);
4194 Assert(username != NULL);
4195
4197
4198 /*
4199 * Set up signal handlers. (InitPostmasterChild or InitStandaloneProcess
4200 * has already set up BlockSig and made that the active signal mask.)
4201 *
4202 * Note that postmaster blocked all signals before forking child process,
4203 * so there is no race condition whereby we might receive a signal before
4204 * we have set up the handler.
4205 *
4206 * Also note: it's best not to use any signals that are SIG_IGNored in the
4207 * postmaster. If such a signal arrives before we are able to change the
4208 * handler to non-SIG_IGN, it'll get dropped. Instead, make a dummy
4209 * handler in the postmaster to reserve the signal. (Of course, this isn't
4210 * an issue for signals that are locally generated, such as SIGALRM and
4211 * SIGPIPE.)
4212 */
4213 if (am_walsender)
4214 WalSndSignals();
4215 else
4216 {
4218 pqsignal(SIGINT, StatementCancelHandler); /* cancel current query */
4219 pqsignal(SIGTERM, die); /* cancel current query and exit */
4220
4221 /*
4222 * In a postmaster child backend, replace SignalHandlerForCrashExit
4223 * with quickdie, so we can tell the client we're dying.
4224 *
4225 * In a standalone backend, SIGQUIT can be generated from the keyboard
4226 * easily, while SIGTERM cannot, so we make both signals do die()
4227 * rather than quickdie().
4228 */
4230 pqsignal(SIGQUIT, quickdie); /* hard crash time */
4231 else
4232 pqsignal(SIGQUIT, die); /* cancel current query and exit */
4233 InitializeTimeouts(); /* establishes SIGALRM handler */
4234
4235 /*
4236 * Ignore failure to write to frontend. Note: if frontend closes
4237 * connection, we will notice it and exit cleanly when control next
4238 * returns to outer loop. This seems safer than forcing exit in the
4239 * midst of output during who-knows-what operation...
4240 */
4241 pqsignal(SIGPIPE, SIG_IGN);
4243 pqsignal(SIGUSR2, SIG_IGN);
4245
4246 /*
4247 * Reset some signals that are accepted by postmaster but not by
4248 * backend
4249 */
4250 pqsignal(SIGCHLD, SIG_DFL); /* system() requires this on some
4251 * platforms */
4252 }
4253
4254 /* Early initialization */
4255 BaseInit();
4256
4257 /* We need to allow SIGINT, etc during the initial transaction */
4258 sigprocmask(SIG_SETMASK, &UnBlockSig, NULL);
4259
4260 /*
4261 * Generate a random cancel key, if this is a backend serving a
4262 * connection. InitPostgres() will advertise it in shared memory.
4263 */
4266 {
4267 int len;
4268
4269 len = (MyProcPort == NULL || MyProcPort->proto >= PG_PROTOCOL(3, 2))
4272 {
4273 ereport(ERROR,
4274 (errcode(ERRCODE_INTERNAL_ERROR),
4275 errmsg("could not generate random cancel key")));
4276 }
4278 }
4279
4280 /*
4281 * General initialization.
4282 *
4283 * NOTE: if you are tempted to add code in this vicinity, consider putting
4284 * it inside InitPostgres() instead. In particular, anything that
4285 * involves database access should be there, not here.
4286 *
4287 * Honor session_preload_libraries if not dealing with a WAL sender.
4288 */
4289 InitPostgres(dbname, InvalidOid, /* database to connect to */
4290 username, InvalidOid, /* role to connect as */
4292 NULL); /* no out_dbname */
4293
4294 /*
4295 * If the PostmasterContext is still around, recycle the space; we don't
4296 * need it anymore after InitPostgres completes.
4297 */
4299 {
4301 PostmasterContext = NULL;
4302 }
4303
4305
4306 /*
4307 * Now all GUC states are fully set up. Report them to client if
4308 * appropriate.
4309 */
4311
4312 /*
4313 * Also set up handler to log session end; we have to wait till now to be
4314 * sure Log_disconnections has its final value.
4315 */
4318
4320
4321 /* Perform initialization specific to a WAL sender process. */
4322 if (am_walsender)
4323 InitWalSender();
4324
4325 /*
4326 * Send this backend's cancellation info to the frontend.
4327 */
4329 {
4331
4335
4338 /* Need not flush since ReadyForQuery will do it. */
4339 }
4340
4341 /* Welcome banner for standalone case */
4343 printf("\nPostgreSQL stand-alone backend %s\n", PG_VERSION);
4344
4345 /*
4346 * Create the memory context we will use in the main loop.
4347 *
4348 * MessageContext is reset once per iteration of the main loop, ie, upon
4349 * completion of processing of each command message from the client.
4350 */
4352 "MessageContext",
4354
4355 /*
4356 * Create memory context and buffer used for RowDescription messages. As
4357 * SendRowDescriptionMessage(), via exec_describe_statement_message(), is
4358 * frequently executed for ever single statement, we don't want to
4359 * allocate a separate buffer every time.
4360 */
4362 "RowDescriptionContext",
4367
4368 /* Fire any defined login event triggers, if appropriate */
4370
4371 /*
4372 * POSTGRES main processing loop begins here
4373 *
4374 * If an exception is encountered, processing resumes here so we abort the
4375 * current transaction and start a new one.
4376 *
4377 * You might wonder why this isn't coded as an infinite loop around a
4378 * PG_TRY construct. The reason is that this is the bottom of the
4379 * exception stack, and so with PG_TRY there would be no exception handler
4380 * in force at all during the CATCH part. By leaving the outermost setjmp
4381 * always active, we have at least some chance of recovering from an error
4382 * during error recovery. (If we get into an infinite loop thereby, it
4383 * will soon be stopped by overflow of elog.c's internal state stack.)
4384 *
4385 * Note that we use sigsetjmp(..., 1), so that this function's signal mask
4386 * (to wit, UnBlockSig) will be restored when longjmp'ing to here. This
4387 * is essential in case we longjmp'd out of a signal handler on a platform
4388 * where that leaves the signal blocked. It's not redundant with the
4389 * unblock in AbortTransaction() because the latter is only called if we
4390 * were inside a transaction.
4391 */
4392
4393 if (sigsetjmp(local_sigjmp_buf, 1) != 0)
4394 {
4395 /*
4396 * NOTE: if you are tempted to add more code in this if-block,
4397 * consider the high probability that it should be in
4398 * AbortTransaction() instead. The only stuff done directly here
4399 * should be stuff that is guaranteed to apply *only* for outer-level
4400 * error recovery, such as adjusting the FE/BE protocol status.
4401 */
4402
4403 /* Since not using PG_TRY, must reset error stack by hand */
4404 error_context_stack = NULL;
4405
4406 /* Prevent interrupts while cleaning up */
4408
4409 /*
4410 * Forget any pending QueryCancel request, since we're returning to
4411 * the idle loop anyway, and cancel any active timeout requests. (In
4412 * future we might want to allow some timeout requests to survive, but
4413 * at minimum it'd be necessary to do reschedule_timeouts(), in case
4414 * we got here because of a query cancel interrupting the SIGALRM
4415 * interrupt handler.) Note in particular that we must clear the
4416 * statement and lock timeout indicators, to prevent any future plain
4417 * query cancels from being misreported as timeouts in case we're
4418 * forgetting a timeout cancel.
4419 */
4420 disable_all_timeouts(false); /* do first to avoid race condition */
4421 QueryCancelPending = false;
4422 idle_in_transaction_timeout_enabled = false;
4423 idle_session_timeout_enabled = false;
4424
4425 /* Not reading from the client anymore. */
4426 DoingCommandRead = false;
4427
4428 /* Make sure libpq is in a good state */
4429 pq_comm_reset();
4430
4431 /* Report the error to the client and/or server log */
4433
4434 /*
4435 * If Valgrind noticed something during the erroneous query, print the
4436 * query string, assuming we have one.
4437 */
4439
4440 /*
4441 * Make sure debug_query_string gets reset before we possibly clobber
4442 * the storage it points at.
4443 */
4444 debug_query_string = NULL;
4445
4446 /*
4447 * Abort the current transaction in order to recover.
4448 */
4450
4451 if (am_walsender)
4453
4455
4456 /*
4457 * We can't release replication slots inside AbortTransaction() as we
4458 * need to be able to start and abort transactions while having a slot
4459 * acquired. But we never need to hold them across top level errors,
4460 * so releasing here is fine. There also is a before_shmem_exit()
4461 * callback ensuring correct cleanup on FATAL errors.
4462 */
4463 if (MyReplicationSlot != NULL)
4465
4466 /* We also want to cleanup temporary slots on error. */
4468
4470
4471 /*
4472 * Now return to normal top-level context and clear ErrorContext for
4473 * next time.
4474 */
4477
4478 /*
4479 * If we were handling an extended-query-protocol message, initiate
4480 * skip till next Sync. This also causes us not to issue
4481 * ReadyForQuery (until we get Sync).
4482 */
4484 ignore_till_sync = true;
4485
4486 /* We don't have a transaction command open anymore */
4487 xact_started = false;
4488
4489 /*
4490 * If an error occurred while we were reading a message from the
4491 * client, we have potentially lost track of where the previous
4492 * message ends and the next one begins. Even though we have
4493 * otherwise recovered from the error, we cannot safely read any more
4494 * messages from the client, so there isn't much we can do with the
4495 * connection anymore.
4496 */
4497 if (pq_is_reading_msg())
4498 ereport(FATAL,
4499 (errcode(ERRCODE_PROTOCOL_VIOLATION),
4500 errmsg("terminating connection because protocol synchronization was lost")));
4501
4502 /* Now we can allow interrupts again */
4504 }
4505
4506 /* We can now handle ereport(ERROR) */
4507 PG_exception_stack = &local_sigjmp_buf;
4508
4509 if (!ignore_till_sync)
4510 send_ready_for_query = true; /* initially, or after error */
4511
4512 /*
4513 * Non-error queries loop here.
4514 */
4515
4516 for (;;)
4517 {
4518 int firstchar;
4519 StringInfoData input_message;
4520
4521 /*
4522 * At top of loop, reset extended-query-message flag, so that any
4523 * errors encountered in "idle" state don't provoke skip.
4524 */
4526
4527 /*
4528 * For valgrind reporting purposes, the "current query" begins here.
4529 */
4530#ifdef USE_VALGRIND
4531 old_valgrind_error_count = VALGRIND_COUNT_ERRORS;
4532#endif
4533
4534 /*
4535 * Release storage left over from prior query cycle, and create a new
4536 * query input buffer in the cleared MessageContext.
4537 */
4540
4541 initStringInfo(&input_message);
4542
4543 /*
4544 * Also consider releasing our catalog snapshot if any, so that it's
4545 * not preventing advance of global xmin while we wait for the client.
4546 */
4548
4549 /*
4550 * (1) If we've reached idle state, tell the frontend we're ready for
4551 * a new query.
4552 *
4553 * Note: this includes fflush()'ing the last of the prior output.
4554 *
4555 * This is also a good time to flush out collected statistics to the
4556 * cumulative stats system, and to update the PS stats display. We
4557 * avoid doing those every time through the message loop because it'd
4558 * slow down processing of batched messages, and because we don't want
4559 * to report uncommitted updates (that confuses autovacuum). The
4560 * notification processor wants a call too, if we are not in a
4561 * transaction block.
4562 *
4563 * Also, if an idle timeout is enabled, start the timer for that.
4564 */
4565 if (send_ready_for_query)
4566 {
4568 {
4569 set_ps_display("idle in transaction (aborted)");
4571
4572 /* Start the idle-in-transaction timer */
4575 {
4576 idle_in_transaction_timeout_enabled = true;
4579 }
4580 }
4582 {
4583 set_ps_display("idle in transaction");
4585
4586 /* Start the idle-in-transaction timer */
4589 {
4590 idle_in_transaction_timeout_enabled = true;
4593 }
4594 }
4595 else
4596 {
4597 long stats_timeout;
4598
4599 /*
4600 * Process incoming notifies (including self-notifies), if
4601 * any, and send relevant messages to the client. Doing it
4602 * here helps ensure stable behavior in tests: if any notifies
4603 * were received during the just-finished transaction, they'll
4604 * be seen by the client before ReadyForQuery is.
4605 */
4608
4609 /*
4610 * Check if we need to report stats. If pgstat_report_stat()
4611 * decides it's too soon to flush out pending stats / lock
4612 * contention prevented reporting, it'll tell us when we
4613 * should try to report stats again (so that stats updates
4614 * aren't unduly delayed if the connection goes idle for a
4615 * long time). We only enable the timeout if we don't already
4616 * have a timeout in progress, because we don't disable the
4617 * timeout below. enable_timeout_after() needs to determine
4618 * the current timestamp, which can have a negative
4619 * performance impact. That's OK because pgstat_report_stat()
4620 * won't have us wake up sooner than a prior call.
4621 */
4622 stats_timeout = pgstat_report_stat(false);
4623 if (stats_timeout > 0)
4624 {
4627 stats_timeout);
4628 }
4629 else
4630 {
4631 /* all stats flushed, no need for the timeout */
4634 }
4635
4636 set_ps_display("idle");
4638
4639 /* Start the idle-session timer */
4640 if (IdleSessionTimeout > 0)
4641 {
4642 idle_session_timeout_enabled = true;
4645 }
4646 }
4647
4648 /* Report any recently-changed GUC options */
4650
4651 /*
4652 * The first time this backend is ready for query, log the
4653 * durations of the different components of connection
4654 * establishment and setup.
4655 */
4659 {
4660 uint64 total_duration,
4661 fork_duration,
4662 auth_duration;
4663
4665
4666 total_duration =
4669 fork_duration =
4672 auth_duration =
4675
4676 ereport(LOG,
4677 errmsg("connection ready: setup total=%.3f ms, fork=%.3f ms, authentication=%.3f ms",
4678 (double) total_duration / NS_PER_US,
4679 (double) fork_duration / NS_PER_US,
4680 (double) auth_duration / NS_PER_US));
4681 }
4682
4684 send_ready_for_query = false;
4685 }
4686
4687 /*
4688 * (2) Allow asynchronous signals to be executed immediately if they
4689 * come in while we are waiting for client input. (This must be
4690 * conditional since we don't want, say, reads on behalf of COPY FROM
4691 * STDIN doing the same thing.)
4692 */
4693 DoingCommandRead = true;
4694
4695 /*
4696 * (3) read a command (loop blocks here)
4697 */
4698 firstchar = ReadCommand(&input_message);
4699
4700 /*
4701 * (4) turn off the idle-in-transaction and idle-session timeouts if
4702 * active. We do this before step (5) so that any last-moment timeout
4703 * is certain to be detected in step (5).
4704 *
4705 * At most one of these timeouts will be active, so there's no need to
4706 * worry about combining the timeout.c calls into one.
4707 */
4708 if (idle_in_transaction_timeout_enabled)
4709 {
4711 idle_in_transaction_timeout_enabled = false;
4712 }
4713 if (idle_session_timeout_enabled)
4714 {
4716 idle_session_timeout_enabled = false;
4717 }
4718
4719 /*
4720 * (5) disable async signal conditions again.
4721 *
4722 * Query cancel is supposed to be a no-op when there is no query in
4723 * progress, so if a query cancel arrived while we were idle, just
4724 * reset QueryCancelPending. ProcessInterrupts() has that effect when
4725 * it's called when DoingCommandRead is set, so check for interrupts
4726 * before resetting DoingCommandRead.
4727 */
4729 DoingCommandRead = false;
4730
4731 /*
4732 * (6) check for any other interesting events that happened while we
4733 * slept.
4734 */
4736 {
4737 ConfigReloadPending = false;
4739 }
4740
4741 /*
4742 * (7) process the command. But ignore it if we're skipping till
4743 * Sync.
4744 */
4745 if (ignore_till_sync && firstchar != EOF)
4746 continue;
4747
4748 switch (firstchar)
4749 {
4750 case PqMsg_Query:
4751 {
4752 const char *query_string;
4753
4754 /* Set statement_timestamp() */
4756
4757 query_string = pq_getmsgstring(&input_message);
4758 pq_getmsgend(&input_message);
4759
4760 if (am_walsender)
4761 {
4762 if (!exec_replication_command(query_string))
4763 exec_simple_query(query_string);
4764 }
4765 else
4766 exec_simple_query(query_string);
4767
4768 valgrind_report_error_query(query_string);
4769
4770 send_ready_for_query = true;
4771 }
4772 break;
4773
4774 case PqMsg_Parse:
4775 {
4776 const char *stmt_name;
4777 const char *query_string;
4778 int numParams;
4779 Oid *paramTypes = NULL;
4780
4781 forbidden_in_wal_sender(firstchar);
4782
4783 /* Set statement_timestamp() */
4785
4786 stmt_name = pq_getmsgstring(&input_message);
4787 query_string = pq_getmsgstring(&input_message);
4788 numParams = pq_getmsgint(&input_message, 2);
4789 if (numParams > 0)
4790 {
4791 paramTypes = palloc_array(Oid, numParams);
4792 for (int i = 0; i < numParams; i++)
4793 paramTypes[i] = pq_getmsgint(&input_message, 4);
4794 }
4795 pq_getmsgend(&input_message);
4796
4797 exec_parse_message(query_string, stmt_name,
4798 paramTypes, numParams);
4799
4800 valgrind_report_error_query(query_string);
4801 }
4802 break;
4803
4804 case PqMsg_Bind:
4805 forbidden_in_wal_sender(firstchar);
4806
4807 /* Set statement_timestamp() */
4809
4810 /*
4811 * this message is complex enough that it seems best to put
4812 * the field extraction out-of-line
4813 */
4814 exec_bind_message(&input_message);
4815
4816 /* exec_bind_message does valgrind_report_error_query */
4817 break;
4818
4819 case PqMsg_Execute:
4820 {
4821 const char *portal_name;
4822 int max_rows;
4823
4824 forbidden_in_wal_sender(firstchar);
4825
4826 /* Set statement_timestamp() */
4828
4829 portal_name = pq_getmsgstring(&input_message);
4830 max_rows = pq_getmsgint(&input_message, 4);
4831 pq_getmsgend(&input_message);
4832
4833 exec_execute_message(portal_name, max_rows);
4834
4835 /* exec_execute_message does valgrind_report_error_query */
4836 }
4837 break;
4838
4839 case PqMsg_FunctionCall:
4840 forbidden_in_wal_sender(firstchar);
4841
4842 /* Set statement_timestamp() */
4844
4845 /* Report query to various monitoring facilities. */
4847 set_ps_display("<FASTPATH>");
4848
4849 /* start an xact for this function invocation */
4851
4852 /*
4853 * Note: we may at this point be inside an aborted
4854 * transaction. We can't throw error for that until we've
4855 * finished reading the function-call message, so
4856 * HandleFunctionRequest() must check for it after doing so.
4857 * Be careful not to do anything that assumes we're inside a
4858 * valid transaction here.
4859 */
4860
4861 /* switch back to message context */
4863
4864 HandleFunctionRequest(&input_message);
4865
4866 /* commit the function-invocation transaction */
4868
4869 valgrind_report_error_query("fastpath function call");
4870
4871 send_ready_for_query = true;
4872 break;
4873
4874 case PqMsg_Close:
4875 {
4876 int close_type;
4877 const char *close_target;
4878
4879 forbidden_in_wal_sender(firstchar);
4880
4881 close_type = pq_getmsgbyte(&input_message);
4882 close_target = pq_getmsgstring(&input_message);
4883 pq_getmsgend(&input_message);
4884
4885 switch (close_type)
4886 {
4887 case 'S':
4888 if (close_target[0] != '\0')
4889 DropPreparedStatement(close_target, false);
4890 else
4891 {
4892 /* special-case the unnamed statement */
4894 }
4895 break;
4896 case 'P':
4897 {
4898 Portal portal;
4899
4900 portal = GetPortalByName(close_target);
4901 if (PortalIsValid(portal))
4902 PortalDrop(portal, false);
4903 }
4904 break;
4905 default:
4906 ereport(ERROR,
4907 (errcode(ERRCODE_PROTOCOL_VIOLATION),
4908 errmsg("invalid CLOSE message subtype %d",
4909 close_type)));
4910 break;
4911 }
4912
4915
4916 valgrind_report_error_query("CLOSE message");
4917 }
4918 break;
4919
4920 case PqMsg_Describe:
4921 {
4922 int describe_type;
4923 const char *describe_target;
4924
4925 forbidden_in_wal_sender(firstchar);
4926
4927 /* Set statement_timestamp() (needed for xact) */
4929
4930 describe_type = pq_getmsgbyte(&input_message);
4931 describe_target = pq_getmsgstring(&input_message);
4932 pq_getmsgend(&input_message);
4933
4934 switch (describe_type)
4935 {
4936 case 'S':
4937 exec_describe_statement_message(describe_target);
4938 break;
4939 case 'P':
4940 exec_describe_portal_message(describe_target);
4941 break;
4942 default:
4943 ereport(ERROR,
4944 (errcode(ERRCODE_PROTOCOL_VIOLATION),
4945 errmsg("invalid DESCRIBE message subtype %d",
4946 describe_type)));
4947 break;
4948 }
4949
4950 valgrind_report_error_query("DESCRIBE message");
4951 }
4952 break;
4953
4954 case PqMsg_Flush:
4955 pq_getmsgend(&input_message);
4957 pq_flush();
4958 break;
4959
4960 case PqMsg_Sync:
4961 pq_getmsgend(&input_message);
4962
4963 /*
4964 * If pipelining was used, we may be in an implicit
4965 * transaction block. Close it before calling
4966 * finish_xact_command.
4967 */
4970 valgrind_report_error_query("SYNC message");
4971 send_ready_for_query = true;
4972 break;
4973
4974 /*
4975 * PqMsg_Terminate means that the frontend is closing down the
4976 * socket. EOF means unexpected loss of frontend connection.
4977 * Either way, perform normal shutdown.
4978 */
4979 case EOF:
4980
4981 /* for the cumulative statistics system */
4983
4984 /* FALLTHROUGH */
4985
4986 case PqMsg_Terminate:
4987
4988 /*
4989 * Reset whereToSendOutput to prevent ereport from attempting
4990 * to send any more messages to client.
4991 */
4994
4995 /*
4996 * NOTE: if you are tempted to add more code here, DON'T!
4997 * Whatever you had in mind to do should be set up as an
4998 * on_proc_exit or on_shmem_exit callback, instead. Otherwise
4999 * it will fail to be called during other backend-shutdown
5000 * scenarios.
5001 */
5002 proc_exit(0);
5003
5004 case PqMsg_CopyData:
5005 case PqMsg_CopyDone:
5006 case PqMsg_CopyFail:
5007
5008 /*
5009 * Accept but ignore these messages, per protocol spec; we
5010 * probably got here because a COPY failed, and the frontend
5011 * is still sending data.
5012 */
5013 break;
5014
5015 default:
5016 ereport(FATAL,
5017 (errcode(ERRCODE_PROTOCOL_VIOLATION),
5018 errmsg("invalid frontend message type %d",
5019 firstchar)));
5020 }
5021 } /* end of input-reading loop */
5022}
void ProcessNotifyInterrupt(bool flush)
Definition: async.c:1834
volatile sig_atomic_t notifyInterruptPending
Definition: async.c:413
void DropPreparedStatement(const char *stmt_name, bool showError)
Definition: prepare.c:519
sigset_t UnBlockSig
Definition: pqsignal.c:22
uint32 log_connections
ConnectionTiming conn_timing
@ LOG_CONNECTION_SETUP_DURATIONS
void pgstat_report_activity(BackendState state, const char *cmd_str)
@ STATE_IDLEINTRANSACTION_ABORTED
@ STATE_IDLE
@ STATE_IDLEINTRANSACTION
@ STATE_FASTPATH
int32_t int32
Definition: c.h:498
uint64_t uint64
Definition: c.h:503
#define TIMESTAMP_MINUS_INFINITY
Definition: timestamp.h:150
void ReadyForQuery(CommandDest dest)
Definition: dest.c:256
@ DestDebug
Definition: dest.h:88
@ DestNone
Definition: dest.h:87
void EmitErrorReport(void)
Definition: elog.c:1692
ErrorContextCallback * error_context_stack
Definition: elog.c:95
void FlushErrorState(void)
Definition: elog.c:1872
sigjmp_buf * PG_exception_stack
Definition: elog.c:97
#define FATAL
Definition: elog.h:41
void EventTriggerOnLogin(void)
void HandleFunctionRequest(StringInfo msgBuf)
Definition: fastpath.c:188
#define palloc_array(type, count)
Definition: fe_memutils.h:76
int MyCancelKeyLength
Definition: globals.c:53
int MyProcPid
Definition: globals.c:47
bool IsUnderPostmaster
Definition: globals.c:120
volatile sig_atomic_t QueryCancelPending
Definition: globals.c:33
uint8 MyCancelKey[MAX_CANCEL_KEY_LENGTH]
Definition: globals.c:52
struct Port * MyProcPort
Definition: globals.c:51
Oid MyDatabaseId
Definition: globals.c:94
void ProcessConfigFile(GucContext context)
Definition: guc-file.l:120
void BeginReportingGUCOptions(void)
Definition: guc.c:2546
void ReportChangedGUCOptions(void)
Definition: guc.c:2596
@ PGC_SIGHUP
Definition: guc.h:75
static char * username
Definition: initdb.c:153
volatile sig_atomic_t ConfigReloadPending
Definition: interrupt.c:27
void SignalHandlerForConfigReload(SIGNAL_ARGS)
Definition: interrupt.c:61
void on_proc_exit(pg_on_exit_callback function, Datum arg)
Definition: ipc.c:309
void proc_exit(int code)
Definition: ipc.c:104
void jit_reset_after_error(void)
Definition: jit.c:127
#define pq_flush()
Definition: libpq.h:46
#define pq_comm_reset()
Definition: libpq.h:45
MemoryContext MessageContext
Definition: mcxt.c:153
void MemoryContextReset(MemoryContext context)
Definition: mcxt.c:383
MemoryContext TopMemoryContext
Definition: mcxt.c:149
MemoryContext PostmasterContext
Definition: mcxt.c:151
void MemoryContextDelete(MemoryContext context)
Definition: mcxt.c:454
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:160
#define RESUME_INTERRUPTS()
Definition: miscadmin.h:135
@ NormalProcessing
Definition: miscadmin.h:471
@ InitProcessing
Definition: miscadmin.h:470
#define IsExternalConnectionBackend(backend_type)
Definition: miscadmin.h:404
#define GetProcessingMode()
Definition: miscadmin.h:480
#define INIT_PG_LOAD_SESSION_LIBS
Definition: miscadmin.h:498
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:122
#define HOLD_INTERRUPTS()
Definition: miscadmin.h:133
#define SetProcessingMode(mode)
Definition: miscadmin.h:482
BackendType MyBackendType
Definition: miscinit.c:64
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124
const void size_t len
static char * buf
Definition: pg_test_fsync.c:72
long pgstat_report_stat(bool force)
Definition: pgstat.c:691
@ DISCONNECT_CLIENT_EOF
Definition: pgstat.h:56
void pgstat_report_connect(Oid dboid)
#define pqsignal
Definition: port.h:531
bool pg_strong_random(void *buf, size_t len)
#define printf(...)
Definition: port.h:245
#define PortalIsValid(p)
Definition: portal.h:211
void PortalDrop(Portal portal, bool isTopCommit)
Definition: portalmem.c:468
Portal GetPortalByName(const char *name)
Definition: portalmem.c:130
void PortalErrorCleanup(void)
Definition: portalmem.c:917
static void exec_describe_statement_message(const char *stmt_name)
Definition: postgres.c:2641
void quickdie(SIGNAL_ARGS)
Definition: postgres.c:2929
static void log_disconnections(int code, Datum arg)
Definition: postgres.c:5168
static void forbidden_in_wal_sender(char firstchar)
Definition: postgres.c:5032
static void exec_execute_message(const char *portal_name, long max_rows)
Definition: postgres.c:2107
void FloatExceptionHandler(SIGNAL_ARGS)
Definition: postgres.c:3073
void StatementCancelHandler(SIGNAL_ARGS)
Definition: postgres.c:3056
static bool ignore_till_sync
Definition: postgres.c:143
static void finish_xact_command(void)
Definition: postgres.c:2825
const char * debug_query_string
Definition: postgres.c:88
static void exec_simple_query(const char *query_string)
Definition: postgres.c:1011
static void exec_parse_message(const char *query_string, const char *stmt_name, Oid *paramTypes, int numParams)
Definition: postgres.c:1389
static void exec_bind_message(StringInfo input_message)
Definition: postgres.c:1624
void die(SIGNAL_ARGS)
Definition: postgres.c:3026
static bool xact_started
Definition: postgres.c:129
static MemoryContext row_description_context
Definition: postgres.c:162
static StringInfoData row_description_buf
Definition: postgres.c:163
static bool doing_extended_query_message
Definition: postgres.c:142
static void start_xact_command(void)
Definition: postgres.c:2786
static void exec_describe_portal_message(const char *portal_name)
Definition: postgres.c:2734
bool Log_disconnections
Definition: postgres.c:94
static void drop_unnamed_stmt(void)
Definition: postgres.c:2904
#define valgrind_report_error_query(query)
Definition: postgres.c:216
static int ReadCommand(StringInfo inBuf)
Definition: postgres.c:480
void BaseInit(void)
Definition: postinit.c:612
void InitPostgres(const char *in_dbname, Oid dboid, const char *username, Oid useroid, bits32 flags, char *out_dbname)
Definition: postinit.c:712
bool pq_is_reading_msg(void)
Definition: pqcomm.c:1182
#define PG_PROTOCOL(m, n)
Definition: pqcomm.h:90
unsigned int pq_getmsgint(StringInfo msg, int b)
Definition: pqformat.c:415
void pq_sendbytes(StringInfo buf, const void *data, int datalen)
Definition: pqformat.c:126
void pq_getmsgend(StringInfo msg)
Definition: pqformat.c:635
const char * pq_getmsgstring(StringInfo msg)
Definition: pqformat.c:579
void pq_putemptymessage(char msgtype)
Definition: pqformat.c:388
void pq_endmessage(StringInfo buf)
Definition: pqformat.c:296
int pq_getmsgbyte(StringInfo msg)
Definition: pqformat.c:399
void pq_beginmessage(StringInfo buf, char msgtype)
Definition: pqformat.c:88
static void pq_sendint32(StringInfo buf, uint32 i)
Definition: pqformat.h:144
void procsignal_sigusr1_handler(SIGNAL_ARGS)
Definition: procsignal.c:674
#define MAX_CANCEL_KEY_LENGTH
Definition: procsignal.h:67
#define PqMsg_CloseComplete
Definition: protocol.h:40
#define PqMsg_CopyDone
Definition: protocol.h:64
#define PqMsg_CopyData
Definition: protocol.h:65
#define PqMsg_FunctionCall
Definition: protocol.h:23
#define PqMsg_Describe
Definition: protocol.h:21
#define PqMsg_Parse
Definition: protocol.h:25
#define PqMsg_Bind
Definition: protocol.h:19
#define PqMsg_Sync
Definition: protocol.h:27
#define PqMsg_CopyFail
Definition: protocol.h:29
#define PqMsg_Flush
Definition: protocol.h:24
#define PqMsg_BackendKeyData
Definition: protocol.h:48
#define PqMsg_Query
Definition: protocol.h:26
#define PqMsg_Terminate
Definition: protocol.h:28
#define PqMsg_Execute
Definition: protocol.h:22
#define PqMsg_Close
Definition: protocol.h:20
static void set_ps_display(const char *activity)
Definition: ps_status.h:40
ReplicationSlot * MyReplicationSlot
Definition: slot.c:147
void ReplicationSlotRelease(void)
Definition: slot.c:686
void ReplicationSlotCleanup(bool synced_only)
Definition: slot.c:775
void InvalidateCatalogSnapshotConditionally(void)
Definition: snapmgr.c:464
int IdleSessionTimeout
Definition: proc.c:62
int IdleInTransactionSessionTimeout
Definition: proc.c:60
int TransactionTimeout
Definition: proc.c:61
char * dbname
Definition: streamutil.c:49
void initStringInfo(StringInfo str)
Definition: stringinfo.c:97
TimestampTz ready_for_use
TimestampTz auth_start
TimestampTz socket_create
TimestampTz fork_start
TimestampTz auth_end
TimestampTz fork_end
ProtocolVersion proto
Definition: libpq-be.h:132
void enable_timeout_after(TimeoutId id, int delay_ms)
Definition: timeout.c:560
bool get_timeout_active(TimeoutId id)
Definition: timeout.c:780
void disable_all_timeouts(bool keep_indicators)
Definition: timeout.c:751
void InitializeTimeouts(void)
Definition: timeout.c:470
void disable_timeout(TimeoutId id, bool keep_indicator)
Definition: timeout.c:685
@ IDLE_SESSION_TIMEOUT
Definition: timeout.h:35
@ IDLE_IN_TRANSACTION_SESSION_TIMEOUT
Definition: timeout.h:33
@ IDLE_STATS_UPDATE_TIMEOUT
Definition: timeout.h:36
static uint64 TimestampDifferenceMicroseconds(TimestampTz start_time, TimestampTz stop_time)
Definition: timestamp.h:90
#define NS_PER_US
Definition: uuid.c:33
void WalSndErrorCleanup(void)
Definition: walsender.c:330
bool am_walsender
Definition: walsender.c:120
bool exec_replication_command(const char *cmd_string)
Definition: walsender.c:1970
void InitWalSender(void)
Definition: walsender.c:283
void WalSndSignals(void)
Definition: walsender.c:3619
#define SIGCHLD
Definition: win32_port.h:168
#define SIGHUP
Definition: win32_port.h:158
#define SIGPIPE
Definition: win32_port.h:163
#define SIGQUIT
Definition: win32_port.h:159
#define SIGUSR1
Definition: win32_port.h:170
#define SIGUSR2
Definition: win32_port.h:171
bool IsTransactionOrTransactionBlock(void)
Definition: xact.c:4989
bool IsAbortedTransactionBlockState(void)
Definition: xact.c:407
void EndImplicitTransactionBlock(void)
Definition: xact.c:4351
void SetCurrentStatementStartTimestamp(void)
Definition: xact.c:914
void AbortCurrentTransaction(void)
Definition: xact.c:3451

References AbortCurrentTransaction(), ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, am_walsender, Assert(), ConnectionTiming::auth_end, ConnectionTiming::auth_start, BaseInit(), BeginReportingGUCOptions(), buf, CHECK_FOR_INTERRUPTS, ConfigReloadPending, conn_timing, dbname, debug_query_string, DestDebug, DestNone, DestRemote, die(), disable_all_timeouts(), disable_timeout(), DISCONNECT_CLIENT_EOF, doing_extended_query_message, DoingCommandRead, drop_unnamed_stmt(), DropPreparedStatement(), EmitErrorReport(), enable_timeout_after(), EndImplicitTransactionBlock(), ereport, errcode(), errmsg(), ERROR, error_context_stack, EventTriggerOnLogin(), exec_bind_message(), exec_describe_portal_message(), exec_describe_statement_message(), exec_execute_message(), exec_parse_message(), exec_replication_command(), exec_simple_query(), FATAL, finish_xact_command(), FloatExceptionHandler(), FlushErrorState(), forbidden_in_wal_sender(), ConnectionTiming::fork_end, ConnectionTiming::fork_start, get_timeout_active(), GetCurrentTimestamp(), GetPortalByName(), GetProcessingMode, HandleFunctionRequest(), HOLD_INTERRUPTS, i, IDLE_IN_TRANSACTION_SESSION_TIMEOUT, IDLE_SESSION_TIMEOUT, IDLE_STATS_UPDATE_TIMEOUT, IdleInTransactionSessionTimeout, IdleSessionTimeout, ignore_till_sync, INIT_PG_LOAD_SESSION_LIBS, InitializeTimeouts(), InitPostgres(), InitProcessing, initStringInfo(), InitWalSender(), InvalidateCatalogSnapshotConditionally(), InvalidOid, IsAbortedTransactionBlockState(), IsExternalConnectionBackend, IsTransactionOrTransactionBlock(), IsUnderPostmaster, jit_reset_after_error(), len, LOG, LOG_CONNECTION_SETUP_DURATIONS, log_connections, Log_disconnections, log_disconnections(), MAX_CANCEL_KEY_LENGTH, MemoryContextDelete(), MemoryContextReset(), MemoryContextSwitchTo(), MessageContext, MyBackendType, MyCancelKey, MyCancelKeyLength, MyDatabaseId, MyProcPid, MyProcPort, MyReplicationSlot, NormalProcessing, notifyInterruptPending, NS_PER_US, on_proc_exit(), palloc_array, PG_exception_stack, PG_PROTOCOL, pg_strong_random(), PGC_SIGHUP, pgstat_report_activity(), pgstat_report_connect(), pgstat_report_stat(), pgStatSessionEndCause, PortalDrop(), PortalErrorCleanup(), PortalIsValid, PostmasterContext, pq_beginmessage(), pq_comm_reset, pq_endmessage(), pq_flush, pq_getmsgbyte(), pq_getmsgend(), pq_getmsgint(), pq_getmsgstring(), pq_is_reading_msg(), pq_putemptymessage(), pq_sendbytes(), pq_sendint32(), PqMsg_BackendKeyData, PqMsg_Bind, PqMsg_Close, PqMsg_CloseComplete, PqMsg_CopyData, PqMsg_CopyDone, PqMsg_CopyFail, PqMsg_Describe, PqMsg_Execute, PqMsg_Flush, PqMsg_FunctionCall, PqMsg_Parse, PqMsg_Query, PqMsg_Sync, PqMsg_Terminate, pqsignal, printf, proc_exit(), ProcessConfigFile(), ProcessNotifyInterrupt(), procsignal_sigusr1_handler(), Port::proto, QueryCancelPending, quickdie(), ReadCommand(), ConnectionTiming::ready_for_use, ReadyForQuery(), ReplicationSlotCleanup(), ReplicationSlotRelease(), ReportChangedGUCOptions(), RESUME_INTERRUPTS, row_description_buf, row_description_context, set_ps_display(), SetCurrentStatementStartTimestamp(), SetProcessingMode, SIGCHLD, SIGHUP, SignalHandlerForConfigReload(), SIGPIPE, SIGQUIT, SIGUSR1, SIGUSR2, ConnectionTiming::socket_create, start_xact_command(), STATE_FASTPATH, STATE_IDLE, STATE_IDLEINTRANSACTION, STATE_IDLEINTRANSACTION_ABORTED, StatementCancelHandler(), TIMESTAMP_MINUS_INFINITY, TimestampDifferenceMicroseconds(), TopMemoryContext, TransactionTimeout, UnBlockSig, username, valgrind_report_error_query, WalSndErrorCleanup(), WalSndSignals(), whereToSendOutput, and xact_started.

Referenced by BackendMain(), and PostgresSingleUserMain().

◆ PostgresSingleUserMain()

pg_noreturn void PostgresSingleUserMain ( int  argc,
char *  argv[],
const char *  username 
)

Definition at line 4055 of file postgres.c.

4057{
4058 const char *dbname = NULL;
4059
4061
4062 /* Initialize startup process environment. */
4063 InitStandaloneProcess(argv[0]);
4064
4065 /*
4066 * Set default values for command-line options.
4067 */
4069
4070 /*
4071 * Parse command-line options.
4072 */
4074
4075 /* Must have gotten a database name, or have a default (the username) */
4076 if (dbname == NULL)
4077 {
4078 dbname = username;
4079 if (dbname == NULL)
4080 ereport(FATAL,
4081 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4082 errmsg("%s: no database nor user name specified",
4083 progname)));
4084 }
4085
4086 /* Acquire configuration parameters */
4088 proc_exit(1);
4089
4090 /*
4091 * Validate we have been given a reasonable-looking DataDir and change
4092 * into it.
4093 */
4094 checkDataDir();
4096
4097 /*
4098 * Create lockfile for data directory.
4099 */
4100 CreateDataDirLockFile(false);
4101
4102 /* read control file (error checking and contains config ) */
4104
4105 /*
4106 * process any libraries that should be preloaded at postmaster start
4107 */
4109
4110 /* Initialize MaxBackends */
4112
4113 /*
4114 * We don't need postmaster child slots in single-user mode, but
4115 * initialize them anyway to avoid having special handling.
4116 */
4118
4119 /* Initialize size of fast-path lock cache. */
4121
4122 /*
4123 * Give preloaded libraries a chance to request additional shared memory.
4124 */
4126
4127 /*
4128 * Now that loadable modules have had their chance to request additional
4129 * shared memory, determine the value of any runtime-computed GUCs that
4130 * depend on the amount of shared memory required.
4131 */
4133
4134 /*
4135 * Now that modules have been loaded, we can process any custom resource
4136 * managers specified in the wal_consistency_checking GUC.
4137 */
4139
4140 /*
4141 * Create shared memory etc. (Nothing's really "shared" in single-user
4142 * mode, but we must have these data structures anyway.)
4143 */
4145
4146 /*
4147 * Estimate number of openable files. This must happen after setting up
4148 * semaphores, because on some platforms semaphores count as open files.
4149 */
4151
4152 /*
4153 * Remember stand-alone backend startup time,roughly at the same point
4154 * during startup that postmaster does so.
4155 */
4157
4158 /*
4159 * Create a per-backend PGPROC struct in shared memory. We must do this
4160 * before we can use LWLocks.
4161 */
4162 InitProcess();
4163
4164 /*
4165 * Now that sufficient infrastructure has been initialized, PostgresMain()
4166 * can do the rest.
4167 */
4169}
TimestampTz PgStartTime
Definition: timestamp.c:54
void set_max_safe_fds(void)
Definition: fd.c:1044
bool SelectConfigFiles(const char *userDoption, const char *progname)
Definition: guc.c:1784
void InitializeGUCOptions(void)
Definition: guc.c:1530
@ PGC_POSTMASTER
Definition: guc.h:74
void InitializeShmemGUCs(void)
Definition: ipci.c:355
void CreateSharedMemoryAndSemaphores(void)
Definition: ipci.c:200
const char * progname
Definition: main.c:44
void ChangeToDataDir(void)
Definition: miscinit.c:460
void process_shmem_requests(void)
Definition: miscinit.c:1930
void InitStandaloneProcess(const char *argv0)
Definition: miscinit.c:175
void process_shared_preload_libraries(void)
Definition: miscinit.c:1902
void checkDataDir(void)
Definition: miscinit.c:347
void CreateDataDirLockFile(bool amPostmaster)
Definition: miscinit.c:1514
void InitPostmasterChildSlots(void)
Definition: pmchild.c:86
void process_postgres_switches(int argc, char *argv[], GucContext ctx, const char **dbname)
Definition: postgres.c:3790
static const char * userDoption
Definition: postgres.c:153
void PostgresMain(const char *dbname, const char *username)
Definition: postgres.c:4184
void InitializeMaxBackends(void)
Definition: postinit.c:555
void InitializeFastPathLocks(void)
Definition: postinit.c:580
void InitProcess(void)
Definition: proc.c:390
void InitializeWalConsistencyChecking(void)
Definition: xlog.c:4965
void LocalProcessControlFile(bool reset)
Definition: xlog.c:5027

References Assert(), ChangeToDataDir(), checkDataDir(), CreateDataDirLockFile(), CreateSharedMemoryAndSemaphores(), dbname, ereport, errcode(), errmsg(), FATAL, GetCurrentTimestamp(), InitializeFastPathLocks(), InitializeGUCOptions(), InitializeMaxBackends(), InitializeShmemGUCs(), InitializeWalConsistencyChecking(), InitPostmasterChildSlots(), InitProcess(), InitStandaloneProcess(), IsUnderPostmaster, LocalProcessControlFile(), PGC_POSTMASTER, PgStartTime, PostgresMain(), proc_exit(), process_postgres_switches(), process_shared_preload_libraries(), process_shmem_requests(), progname, SelectConfigFiles(), set_max_safe_fds(), userDoption, and username.

Referenced by main().

◆ process_postgres_switches()

void process_postgres_switches ( int  argc,
char *  argv[],
GucContext  ctx,
const char **  dbname 
)

Definition at line 3790 of file postgres.c.

3792{
3793 bool secure = (ctx == PGC_POSTMASTER);
3794 int errs = 0;
3795 GucSource gucsource;
3796 int flag;
3797
3798 if (secure)
3799 {
3800 gucsource = PGC_S_ARGV; /* switches came from command line */
3801
3802 /* Ignore the initial --single argument, if present */
3803 if (argc > 1 && strcmp(argv[1], "--single") == 0)
3804 {
3805 argv++;
3806 argc--;
3807 }
3808 }
3809 else
3810 {
3811 gucsource = PGC_S_CLIENT; /* switches came from client */
3812 }
3813
3814#ifdef HAVE_INT_OPTERR
3815
3816 /*
3817 * Turn this off because it's either printed to stderr and not the log
3818 * where we'd want it, or argv[0] is now "--single", which would make for
3819 * a weird error message. We print our own error message below.
3820 */
3821 opterr = 0;
3822#endif
3823
3824 /*
3825 * Parse command-line options. CAUTION: keep this in sync with
3826 * postmaster/postmaster.c (the option sets should not conflict) and with
3827 * the common help() function in main/main.c.
3828 */
3829 while ((flag = getopt(argc, argv, "B:bC:c:D:d:EeFf:h:ijk:lN:nOPp:r:S:sTt:v:W:-:")) != -1)
3830 {
3831 switch (flag)
3832 {
3833 case 'B':
3834 SetConfigOption("shared_buffers", optarg, ctx, gucsource);
3835 break;
3836
3837 case 'b':
3838 /* Undocumented flag used for binary upgrades */
3839 if (secure)
3840 IsBinaryUpgrade = true;
3841 break;
3842
3843 case 'C':
3844 /* ignored for consistency with the postmaster */
3845 break;
3846
3847 case '-':
3848
3849 /*
3850 * Error if the user misplaced a special must-be-first option
3851 * for dispatching to a subprogram. parse_dispatch_option()
3852 * returns DISPATCH_POSTMASTER if it doesn't find a match, so
3853 * error for anything else.
3854 */
3856 ereport(ERROR,
3857 (errcode(ERRCODE_SYNTAX_ERROR),
3858 errmsg("--%s must be first argument", optarg)));
3859
3860 /* FALLTHROUGH */
3861 case 'c':
3862 {
3863 char *name,
3864 *value;
3865
3867 if (!value)
3868 {
3869 if (flag == '-')
3870 ereport(ERROR,
3871 (errcode(ERRCODE_SYNTAX_ERROR),
3872 errmsg("--%s requires a value",
3873 optarg)));
3874 else
3875 ereport(ERROR,
3876 (errcode(ERRCODE_SYNTAX_ERROR),
3877 errmsg("-c %s requires a value",
3878 optarg)));
3879 }
3880 SetConfigOption(name, value, ctx, gucsource);
3881 pfree(name);
3882 pfree(value);
3883 break;
3884 }
3885
3886 case 'D':
3887 if (secure)
3888 userDoption = strdup(optarg);
3889 break;
3890
3891 case 'd':
3892 set_debug_options(atoi(optarg), ctx, gucsource);
3893 break;
3894
3895 case 'E':
3896 if (secure)
3897 EchoQuery = true;
3898 break;
3899
3900 case 'e':
3901 SetConfigOption("datestyle", "euro", ctx, gucsource);
3902 break;
3903
3904 case 'F':
3905 SetConfigOption("fsync", "false", ctx, gucsource);
3906 break;
3907
3908 case 'f':
3909 if (!set_plan_disabling_options(optarg, ctx, gucsource))
3910 errs++;
3911 break;
3912
3913 case 'h':
3914 SetConfigOption("listen_addresses", optarg, ctx, gucsource);
3915 break;
3916
3917 case 'i':
3918 SetConfigOption("listen_addresses", "*", ctx, gucsource);
3919 break;
3920
3921 case 'j':
3922 if (secure)
3923 UseSemiNewlineNewline = true;
3924 break;
3925
3926 case 'k':
3927 SetConfigOption("unix_socket_directories", optarg, ctx, gucsource);
3928 break;
3929
3930 case 'l':
3931 SetConfigOption("ssl", "true", ctx, gucsource);
3932 break;
3933
3934 case 'N':
3935 SetConfigOption("max_connections", optarg, ctx, gucsource);
3936 break;
3937
3938 case 'n':
3939 /* ignored for consistency with postmaster */
3940 break;
3941
3942 case 'O':
3943 SetConfigOption("allow_system_table_mods", "true", ctx, gucsource);
3944 break;
3945
3946 case 'P':
3947 SetConfigOption("ignore_system_indexes", "true", ctx, gucsource);
3948 break;
3949
3950 case 'p':
3951 SetConfigOption("port", optarg, ctx, gucsource);
3952 break;
3953
3954 case 'r':
3955 /* send output (stdout and stderr) to the given file */
3956 if (secure)
3958 break;
3959
3960 case 'S':
3961 SetConfigOption("work_mem", optarg, ctx, gucsource);
3962 break;
3963
3964 case 's':
3965 SetConfigOption("log_statement_stats", "true", ctx, gucsource);
3966 break;
3967
3968 case 'T':
3969 /* ignored for consistency with the postmaster */
3970 break;
3971
3972 case 't':
3973 {
3974 const char *tmp = get_stats_option_name(optarg);
3975
3976 if (tmp)
3977 SetConfigOption(tmp, "true", ctx, gucsource);
3978 else
3979 errs++;
3980 break;
3981 }
3982
3983 case 'v':
3984
3985 /*
3986 * -v is no longer used in normal operation, since
3987 * FrontendProtocol is already set before we get here. We keep
3988 * the switch only for possible use in standalone operation,
3989 * in case we ever support using normal FE/BE protocol with a
3990 * standalone backend.
3991 */
3992 if (secure)
3994 break;
3995
3996 case 'W':
3997 SetConfigOption("post_auth_delay", optarg, ctx, gucsource);
3998 break;
3999
4000 default:
4001 errs++;
4002 break;
4003 }
4004
4005 if (errs)
4006 break;
4007 }
4008
4009 /*
4010 * Optional database name should be there only if *dbname is NULL.
4011 */
4012 if (!errs && dbname && *dbname == NULL && argc - optind >= 1)
4013 *dbname = strdup(argv[optind++]);
4014
4015 if (errs || argc != optind)
4016 {
4017 if (errs)
4018 optind--; /* complain about the previous argument */
4019
4020 /* spell the error message a bit differently depending on context */
4022 ereport(FATAL,
4023 errcode(ERRCODE_SYNTAX_ERROR),
4024 errmsg("invalid command-line argument for server process: %s", argv[optind]),
4025 errhint("Try \"%s --help\" for more information.", progname));
4026 else
4027 ereport(FATAL,
4028 errcode(ERRCODE_SYNTAX_ERROR),
4029 errmsg("%s: invalid command-line argument: %s",
4030 progname, argv[optind]),
4031 errhint("Try \"%s --help\" for more information.", progname));
4032 }
4033
4034 /*
4035 * Reset getopt(3) library so that it will work correctly in subprocesses
4036 * or when this function is called a second time with another array.
4037 */
4038 optind = 1;
4039#ifdef HAVE_INT_OPTRESET
4040 optreset = 1; /* some systems need this too */
4041#endif
4042}
int errhint(const char *fmt,...)
Definition: elog.c:1318
bool IsBinaryUpgrade
Definition: globals.c:121
ProtocolVersion FrontendProtocol
Definition: globals.c:30
char OutputFileName[MAXPGPATH]
Definition: globals.c:79
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Definition: guc.c:4332
void ParseLongOption(const char *string, char **name, char **value)
Definition: guc.c:6363
GucSource
Definition: guc.h:112
@ PGC_S_ARGV
Definition: guc.h:117
@ PGC_S_CLIENT
Definition: guc.h:122
static struct @165 value
DispatchOption parse_dispatch_option(const char *name)
Definition: main.c:240
#define MAXPGPATH
PGDLLIMPORT int optind
Definition: getopt.c:51
PGDLLIMPORT int opterr
Definition: getopt.c:50
int getopt(int nargc, char *const *nargv, const char *ostr)
Definition: getopt.c:72
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45
void set_debug_options(int debug_flag, GucContext context, GucSource source)
Definition: postgres.c:3679
static bool UseSemiNewlineNewline
Definition: postgres.c:155
static bool EchoQuery
Definition: postgres.c:154
bool set_plan_disabling_options(const char *arg, GucContext context, GucSource source)
Definition: postgres.c:3708
const char * get_stats_option_name(const char *arg)
Definition: postgres.c:3750
@ DISPATCH_POSTMASTER
Definition: postmaster.h:139
uint32 ProtocolVersion
Definition: pqcomm.h:99
char * flag(int b)
Definition: test-ctype.c:33
const char * name

References dbname, DISPATCH_POSTMASTER, EchoQuery, ereport, errcode(), errhint(), errmsg(), ERROR, FATAL, flag(), FrontendProtocol, get_stats_option_name(), getopt(), IsBinaryUpgrade, IsUnderPostmaster, MAXPGPATH, name, optarg, opterr, optind, OutputFileName, parse_dispatch_option(), ParseLongOption(), pfree(), PGC_POSTMASTER, PGC_S_ARGV, PGC_S_CLIENT, progname, set_debug_options(), set_plan_disabling_options(), SetConfigOption(), strlcpy(), userDoption, UseSemiNewlineNewline, and value.

Referenced by PostgresSingleUserMain(), and process_startup_options().

◆ ProcessClientReadInterrupt()

void ProcessClientReadInterrupt ( bool  blocked)

Definition at line 501 of file postgres.c.

502{
503 int save_errno = errno;
504
506 {
507 /* Check for general interrupts that arrived before/while reading */
509
510 /* Process sinval catchup interrupts, if any */
513
514 /* Process notify interrupts, if any */
517 }
518 else if (ProcDiePending)
519 {
520 /*
521 * We're dying. If there is no data available to read, then it's safe
522 * (and sane) to handle that now. If we haven't tried to read yet,
523 * make sure the process latch is set, so that if there is no data
524 * then we'll come back here and die. If we're done reading, also
525 * make sure the process latch is set, as we might've undesirably
526 * cleared it while reading.
527 */
528 if (blocked)
530 else
532 }
533
534 errno = save_errno;
535}
void ProcessCatchupInterrupt(void)
Definition: sinval.c:174
volatile sig_atomic_t catchupInterruptPending
Definition: sinval.c:39

References catchupInterruptPending, CHECK_FOR_INTERRUPTS, DoingCommandRead, MyLatch, notifyInterruptPending, ProcDiePending, ProcessCatchupInterrupt(), ProcessNotifyInterrupt(), and SetLatch().

Referenced by interactive_getc(), and secure_read().

◆ ProcessClientWriteInterrupt()

void ProcessClientWriteInterrupt ( bool  blocked)

Definition at line 547 of file postgres.c.

548{
549 int save_errno = errno;
550
551 if (ProcDiePending)
552 {
553 /*
554 * We're dying. If it's not possible to write, then we should handle
555 * that immediately, else a stuck client could indefinitely delay our
556 * response to the signal. If we haven't tried to write yet, make
557 * sure the process latch is set, so that if the write would block
558 * then we'll come back here and die. If we're done writing, also
559 * make sure the process latch is set, as we might've undesirably
560 * cleared it while writing.
561 */
562 if (blocked)
563 {
564 /*
565 * Don't mess with whereToSendOutput if ProcessInterrupts wouldn't
566 * service ProcDiePending.
567 */
569 {
570 /*
571 * We don't want to send the client the error message, as a)
572 * that would possibly block again, and b) it would likely
573 * lead to loss of protocol sync because we may have already
574 * sent a partial protocol message.
575 */
578
580 }
581 }
582 else
584 }
585
586 errno = save_errno;
587}
volatile uint32 InterruptHoldoffCount
Definition: globals.c:43
volatile uint32 CritSectionCount
Definition: globals.c:45

References CHECK_FOR_INTERRUPTS, CritSectionCount, DestNone, DestRemote, InterruptHoldoffCount, MyLatch, ProcDiePending, SetLatch(), and whereToSendOutput.

Referenced by secure_write().

◆ quickdie()

pg_noreturn void quickdie ( SIGNAL_ARGS  )

Definition at line 2929 of file postgres.c.

2930{
2931 sigaddset(&BlockSig, SIGQUIT); /* prevent nested calls */
2932 sigprocmask(SIG_SETMASK, &BlockSig, NULL);
2933
2934 /*
2935 * Prevent interrupts while exiting; though we just blocked signals that
2936 * would queue new interrupts, one may have been pending. We don't want a
2937 * quickdie() downgraded to a mere query cancel.
2938 */
2940
2941 /*
2942 * If we're aborting out of client auth, don't risk trying to send
2943 * anything to the client; we will likely violate the protocol, not to
2944 * mention that we may have interrupted the guts of OpenSSL or some
2945 * authentication library.
2946 */
2949
2950 /*
2951 * Notify the client before exiting, to give a clue on what happened.
2952 *
2953 * It's dubious to call ereport() from a signal handler. It is certainly
2954 * not async-signal safe. But it seems better to try, than to disconnect
2955 * abruptly and leave the client wondering what happened. It's remotely
2956 * possible that we crash or hang while trying to send the message, but
2957 * receiving a SIGQUIT is a sign that something has already gone badly
2958 * wrong, so there's not much to lose. Assuming the postmaster is still
2959 * running, it will SIGKILL us soon if we get stuck for some reason.
2960 *
2961 * One thing we can do to make this a tad safer is to clear the error
2962 * context stack, so that context callbacks are not called. That's a lot
2963 * less code that could be reached here, and the context info is unlikely
2964 * to be very relevant to a SIGQUIT report anyway.
2965 */
2966 error_context_stack = NULL;
2967
2968 /*
2969 * When responding to a postmaster-issued signal, we send the message only
2970 * to the client; sending to the server log just creates log spam, plus
2971 * it's more code that we need to hope will work in a signal handler.
2972 *
2973 * Ideally these should be ereport(FATAL), but then we'd not get control
2974 * back to force the correct type of process exit.
2975 */
2976 switch (GetQuitSignalReason())
2977 {
2978 case PMQUIT_NOT_SENT:
2979 /* Hmm, SIGQUIT arrived out of the blue */
2981 (errcode(ERRCODE_ADMIN_SHUTDOWN),
2982 errmsg("terminating connection because of unexpected SIGQUIT signal")));
2983 break;
2984 case PMQUIT_FOR_CRASH:
2985 /* A crash-and-restart cycle is in progress */
2987 (errcode(ERRCODE_CRASH_SHUTDOWN),
2988 errmsg("terminating connection because of crash of another server process"),
2989 errdetail("The postmaster has commanded this server process to roll back"
2990 " the current transaction and exit, because another"
2991 " server process exited abnormally and possibly corrupted"
2992 " shared memory."),
2993 errhint("In a moment you should be able to reconnect to the"
2994 " database and repeat your command.")));
2995 break;
2996 case PMQUIT_FOR_STOP:
2997 /* Immediate-mode stop */
2999 (errcode(ERRCODE_ADMIN_SHUTDOWN),
3000 errmsg("terminating connection due to immediate shutdown command")));
3001 break;
3002 }
3003
3004 /*
3005 * We DO NOT want to run proc_exit() or atexit() callbacks -- we're here
3006 * because shared memory may be corrupted, so we don't want to try to
3007 * clean up our transaction. Just nail the windows shut and get out of
3008 * town. The callbacks wouldn't be safe to run from a signal handler,
3009 * anyway.
3010 *
3011 * Note we do _exit(2) not _exit(0). This is to force the postmaster into
3012 * a system reset cycle if someone sends a manual SIGQUIT to a random
3013 * backend. This is necessary precisely because we don't clean up our
3014 * shared memory state. (The "dead man switch" mechanism in pmsignal.c
3015 * should ensure the postmaster sees this as a crash, too, but no harm in
3016 * being doubly sure.)
3017 */
3018 _exit(2);
3019}
sigset_t BlockSig
Definition: pqsignal.c:23
#define WARNING_CLIENT_ONLY
Definition: elog.h:38
QuitSignalReason GetQuitSignalReason(void)
Definition: pmsignal.c:213
@ PMQUIT_FOR_STOP
Definition: pmsignal.h:56
@ PMQUIT_FOR_CRASH
Definition: pmsignal.h:55
@ PMQUIT_NOT_SENT
Definition: pmsignal.h:54
bool ClientAuthInProgress
Definition: postmaster.c:372

References BlockSig, ClientAuthInProgress, DestNone, DestRemote, ereport, errcode(), errdetail(), errhint(), errmsg(), error_context_stack, GetQuitSignalReason(), HOLD_INTERRUPTS, PMQUIT_FOR_CRASH, PMQUIT_FOR_STOP, PMQUIT_NOT_SENT, SIGQUIT, WARNING, WARNING_CLIENT_ONLY, and whereToSendOutput.

Referenced by PostgresMain().

◆ ResetUsage()

void ResetUsage ( void  )

◆ set_debug_options()

void set_debug_options ( int  debug_flag,
GucContext  context,
GucSource  source 
)

Definition at line 3679 of file postgres.c.

3680{
3681 if (debug_flag > 0)
3682 {
3683 char debugstr[64];
3684
3685 sprintf(debugstr, "debug%d", debug_flag);
3686 SetConfigOption("log_min_messages", debugstr, context, source);
3687 }
3688 else
3689 SetConfigOption("log_min_messages", "notice", context, source);
3690
3691 if (debug_flag >= 1 && context == PGC_POSTMASTER)
3692 {
3693 SetConfigOption("log_connections", "all", context, source);
3694 SetConfigOption("log_disconnections", "true", context, source);
3695 }
3696 if (debug_flag >= 2)
3697 SetConfigOption("log_statement", "all", context, source);
3698 if (debug_flag >= 3)
3699 SetConfigOption("debug_print_parse", "true", context, source);
3700 if (debug_flag >= 4)
3701 SetConfigOption("debug_print_plan", "true", context, source);
3702 if (debug_flag >= 5)
3703 SetConfigOption("debug_print_rewritten", "true", context, source);
3704}
static rewind_source * source
Definition: pg_rewind.c:89
#define sprintf
Definition: port.h:241

References PGC_POSTMASTER, SetConfigOption(), source, and sprintf.

Referenced by PostmasterMain(), and process_postgres_switches().

◆ set_plan_disabling_options()

bool set_plan_disabling_options ( const char *  arg,
GucContext  context,
GucSource  source 
)

Definition at line 3708 of file postgres.c.

3709{
3710 const char *tmp = NULL;
3711
3712 switch (arg[0])
3713 {
3714 case 's': /* seqscan */
3715 tmp = "enable_seqscan";
3716 break;
3717 case 'i': /* indexscan */
3718 tmp = "enable_indexscan";
3719 break;
3720 case 'o': /* indexonlyscan */
3721 tmp = "enable_indexonlyscan";
3722 break;
3723 case 'b': /* bitmapscan */
3724 tmp = "enable_bitmapscan";
3725 break;
3726 case 't': /* tidscan */
3727 tmp = "enable_tidscan";
3728 break;
3729 case 'n': /* nestloop */
3730 tmp = "enable_nestloop";
3731 break;
3732 case 'm': /* mergejoin */
3733 tmp = "enable_mergejoin";
3734 break;
3735 case 'h': /* hashjoin */
3736 tmp = "enable_hashjoin";
3737 break;
3738 }
3739 if (tmp)
3740 {
3741 SetConfigOption(tmp, "false", context, source);
3742 return true;
3743 }
3744 else
3745 return false;
3746}

References arg, SetConfigOption(), and source.

Referenced by PostmasterMain(), and process_postgres_switches().

◆ ShowUsage()

void ShowUsage ( const char *  title)

Definition at line 5059 of file postgres.c.

5060{
5062 struct timeval user,
5063 sys;
5064 struct timeval elapse_t;
5065 struct rusage r;
5066
5068 gettimeofday(&elapse_t, NULL);
5069 memcpy(&user, &r.ru_utime, sizeof(user));
5070 memcpy(&sys, &r.ru_stime, sizeof(sys));
5071 if (elapse_t.tv_usec < Save_t.tv_usec)
5072 {
5073 elapse_t.tv_sec--;
5074 elapse_t.tv_usec += 1000000;
5075 }
5076 if (r.ru_utime.tv_usec < Save_r.ru_utime.tv_usec)
5077 {
5078 r.ru_utime.tv_sec--;
5079 r.ru_utime.tv_usec += 1000000;
5080 }
5081 if (r.ru_stime.tv_usec < Save_r.ru_stime.tv_usec)
5082 {
5083 r.ru_stime.tv_sec--;
5084 r.ru_stime.tv_usec += 1000000;
5085 }
5086
5087 /*
5088 * The only stats we don't show here are ixrss, idrss, isrss. It takes
5089 * some work to interpret them, and most platforms don't fill them in.
5090 */
5092
5093 appendStringInfoString(&str, "! system usage stats:\n");
5095 "!\t%ld.%06ld s user, %ld.%06ld s system, %ld.%06ld s elapsed\n",
5096 (long) (r.ru_utime.tv_sec - Save_r.ru_utime.tv_sec),
5097 (long) (r.ru_utime.tv_usec - Save_r.ru_utime.tv_usec),
5098 (long) (r.ru_stime.tv_sec - Save_r.ru_stime.tv_sec),
5099 (long) (r.ru_stime.tv_usec - Save_r.ru_stime.tv_usec),
5100 (long) (elapse_t.tv_sec - Save_t.tv_sec),
5101 (long) (elapse_t.tv_usec - Save_t.tv_usec));
5103 "!\t[%ld.%06ld s user, %ld.%06ld s system total]\n",
5104 (long) user.tv_sec,
5105 (long) user.tv_usec,
5106 (long) sys.tv_sec,
5107 (long) sys.tv_usec);
5108#ifndef WIN32
5109
5110 /*
5111 * The following rusage fields are not defined by POSIX, but they're
5112 * present on all current Unix-like systems so we use them without any
5113 * special checks. Some of these could be provided in our Windows
5114 * emulation in src/port/win32getrusage.c with more work.
5115 */
5117 "!\t%ld kB max resident size\n",
5118#if defined(__darwin__)
5119 /* in bytes on macOS */
5120 r.ru_maxrss / 1024
5121#else
5122 /* in kilobytes on most other platforms */
5123 r.ru_maxrss
5124#endif
5125 );
5127 "!\t%ld/%ld [%ld/%ld] filesystem blocks in/out\n",
5128 r.ru_inblock - Save_r.ru_inblock,
5129 /* they only drink coffee at dec */
5130 r.ru_oublock - Save_r.ru_oublock,
5131 r.ru_inblock, r.ru_oublock);
5133 "!\t%ld/%ld [%ld/%ld] page faults/reclaims, %ld [%ld] swaps\n",
5134 r.ru_majflt - Save_r.ru_majflt,
5135 r.ru_minflt - Save_r.ru_minflt,
5136 r.ru_majflt, r.ru_minflt,
5137 r.ru_nswap - Save_r.ru_nswap,
5138 r.ru_nswap);
5140 "!\t%ld [%ld] signals rcvd, %ld/%ld [%ld/%ld] messages rcvd/sent\n",
5141 r.ru_nsignals - Save_r.ru_nsignals,
5142 r.ru_nsignals,
5143 r.ru_msgrcv - Save_r.ru_msgrcv,
5144 r.ru_msgsnd - Save_r.ru_msgsnd,
5145 r.ru_msgrcv, r.ru_msgsnd);
5147 "!\t%ld/%ld [%ld/%ld] voluntary/involuntary context switches\n",
5148 r.ru_nvcsw - Save_r.ru_nvcsw,
5149 r.ru_nivcsw - Save_r.ru_nivcsw,
5150 r.ru_nvcsw, r.ru_nivcsw);
5151#endif /* !WIN32 */
5152
5153 /* remove trailing newline */
5154 if (str.data[str.len - 1] == '\n')
5155 str.data[--str.len] = '\0';
5156
5157 ereport(LOG,
5158 (errmsg_internal("%s", title),
5159 errdetail_internal("%s", str.data)));
5160
5161 pfree(str.data);
5162}
#define __darwin__
Definition: darwin.h:3
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1158
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1231
static char * user
Definition: pg_regress.c:119
void appendStringInfo(StringInfo str, const char *fmt,...)
Definition: stringinfo.c:145
void appendStringInfoString(StringInfo str, const char *s)
Definition: stringinfo.c:230
struct timeval ru_utime
Definition: resource.h:14
struct timeval ru_stime
Definition: resource.h:15

References __darwin__, appendStringInfo(), appendStringInfoString(), ereport, errdetail_internal(), errmsg_internal(), getrusage(), gettimeofday(), initStringInfo(), LOG, pfree(), rusage::ru_stime, rusage::ru_utime, RUSAGE_SELF, Save_r, Save_t, str, and user.

Referenced by _bt_leader_participate_as_worker(), _bt_leafbuild(), _bt_parallel_build_main(), _SPI_pquery(), btbuild(), exec_bind_message(), exec_execute_message(), exec_parse_message(), exec_simple_query(), pg_analyze_and_rewrite_fixedparams(), pg_analyze_and_rewrite_varparams(), pg_analyze_and_rewrite_withcb(), pg_parse_query(), pg_plan_query(), pg_rewrite_query(), PortalRun(), and PortalRunMulti().

◆ StatementCancelHandler()

void StatementCancelHandler ( SIGNAL_ARGS  )

Definition at line 3056 of file postgres.c.

3057{
3058 /*
3059 * Don't joggle the elbow of proc_exit
3060 */
3062 {
3063 InterruptPending = true;
3064 QueryCancelPending = true;
3065 }
3066
3067 /* If we're still here, waken anything waiting on the process latch */
3069}

References InterruptPending, MyLatch, proc_exit_inprogress, QueryCancelPending, and SetLatch().

Referenced by AutoVacLauncherMain(), AutoVacWorkerMain(), BackgroundWorkerMain(), PostgresMain(), and WalSndSignals().

Variable Documentation

◆ client_connection_check_interval

PGDLLIMPORT int client_connection_check_interval
extern

Definition at line 102 of file postgres.c.

Referenced by ProcessInterrupts(), and start_xact_command().

◆ debug_query_string

◆ Log_disconnections

PGDLLIMPORT bool Log_disconnections
extern

Definition at line 94 of file postgres.c.

Referenced by PostgresMain().

◆ log_statement

PGDLLIMPORT int log_statement
extern

Definition at line 96 of file postgres.c.

Referenced by check_log_statement(), and HandleFunctionRequest().

◆ PostAuthDelay

PGDLLIMPORT int PostAuthDelay
extern

◆ restrict_nonsystem_relation_kind

PGDLLIMPORT int restrict_nonsystem_relation_kind
extern

◆ whereToSendOutput