PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
elog.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * elog.h
4 * POSTGRES error reporting/logging definitions.
5 *
6 *
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/utils/elog.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef ELOG_H
15#define ELOG_H
16
17#include <setjmp.h>
18
19#include "lib/stringinfo.h"
20
21/* We cannot include nodes.h yet, so forward-declare struct Node */
22struct Node;
23
24
25/* Error level codes */
26#define DEBUG5 10 /* Debugging messages, in categories of
27 * decreasing detail. */
28#define DEBUG4 11
29#define DEBUG3 12
30#define DEBUG2 13
31#define DEBUG1 14 /* used by GUC debug_* variables */
32#define LOG 15 /* Server operational messages; sent only to
33 * server log by default. */
34#define LOG_SERVER_ONLY 16 /* Same as LOG for server reporting, but never
35 * sent to client. */
36#define COMMERROR LOG_SERVER_ONLY /* Client communication problems; same as
37 * LOG for server reporting, but never
38 * sent to client. */
39#define INFO 17 /* Messages specifically requested by user (eg
40 * VACUUM VERBOSE output); always sent to
41 * client regardless of client_min_messages,
42 * but by default not sent to server log. */
43#define NOTICE 18 /* Helpful messages to users about query
44 * operation; sent to client and not to server
45 * log by default. */
46#define WARNING 19 /* Warnings. NOTICE is for expected messages
47 * like implicit sequence creation by SERIAL.
48 * WARNING is for unexpected messages. */
49#define PGWARNING 19 /* Must equal WARNING; see NOTE below. */
50#define WARNING_CLIENT_ONLY 20 /* Warnings to be sent to client as usual, but
51 * never to the server log. */
52#define ERROR 21 /* user error - abort transaction; return to
53 * known state */
54#define PGERROR 21 /* Must equal ERROR; see NOTE below. */
55#define FATAL 22 /* fatal error - abort process */
56#define PANIC 23 /* take down the other backends with me */
57
58/*
59 * NOTE: the alternate names PGWARNING and PGERROR are useful for dealing
60 * with third-party headers that make other definitions of WARNING and/or
61 * ERROR. One can, for example, re-define ERROR as PGERROR after including
62 * such a header.
63 */
64
65
66/* macros for representing SQLSTATE strings compactly */
67#define PGSIXBIT(ch) (((ch) - '0') & 0x3F)
68#define PGUNSIXBIT(val) (((val) & 0x3F) + '0')
69
70#define MAKE_SQLSTATE(ch1,ch2,ch3,ch4,ch5) \
71 (PGSIXBIT(ch1) + (PGSIXBIT(ch2) << 6) + (PGSIXBIT(ch3) << 12) + \
72 (PGSIXBIT(ch4) << 18) + (PGSIXBIT(ch5) << 24))
73
74/* These macros depend on the fact that '0' becomes a zero in PGSIXBIT */
75#define ERRCODE_TO_CATEGORY(ec) ((ec) & ((1 << 12) - 1))
76#define ERRCODE_IS_CATEGORY(ec) (((ec) & ~((1 << 12) - 1)) == 0)
77
78/* SQLSTATE codes for errors are defined in a separate file */
79#include "utils/errcodes.h"
80
81/*
82 * Provide a way to prevent "errno" from being accidentally used inside an
83 * elog() or ereport() invocation. Since we know that some operating systems
84 * define errno as something involving a function call, we'll put a local
85 * variable of the same name as that function in the local scope to force a
86 * compile error. On platforms that don't define errno in that way, nothing
87 * happens, so we get no warning ... but we can live with that as long as it
88 * happens on some popular platforms.
89 */
90#if defined(errno) && defined(__linux__)
91#define pg_prevent_errno_in_scope() int __errno_location pg_attribute_unused()
92#elif defined(errno) && (defined(__darwin__) || defined(__FreeBSD__))
93#define pg_prevent_errno_in_scope() int __error pg_attribute_unused()
94#else
95#define pg_prevent_errno_in_scope()
96#endif
97
98
99/*----------
100 * New-style error reporting API: to be used in this way:
101 * ereport(ERROR,
102 * errcode(ERRCODE_UNDEFINED_CURSOR),
103 * errmsg("portal \"%s\" not found", stmt->portalname),
104 * ... other errxxx() fields as needed ...);
105 *
106 * The error level is required, and so is a primary error message (errmsg
107 * or errmsg_internal). All else is optional. errcode() defaults to
108 * ERRCODE_INTERNAL_ERROR if elevel is ERROR or more, ERRCODE_WARNING
109 * if elevel is WARNING, or ERRCODE_SUCCESSFUL_COMPLETION if elevel is
110 * NOTICE or below.
111 *
112 * Before Postgres v12, extra parentheses were required around the
113 * list of auxiliary function calls; that's now optional.
114 *
115 * ereport_domain() allows a message domain to be specified, for modules that
116 * wish to use a different message catalog from the backend's. To avoid having
117 * one copy of the default text domain per .o file, we define it as NULL here
118 * and have errstart insert the default text domain. Modules can either use
119 * ereport_domain() directly, or preferably they can override the TEXTDOMAIN
120 * macro.
121 *
122 * When __builtin_constant_p is available and elevel >= ERROR we make a call
123 * to errstart_cold() instead of errstart(). This version of the function is
124 * marked with pg_attribute_cold which will coax supporting compilers into
125 * generating code which is more optimized towards non-ERROR cases. Because
126 * we use __builtin_constant_p() in the condition, when elevel is not a
127 * compile-time constant, or if it is, but it's < ERROR, the compiler has no
128 * need to generate any code for this branch. It can simply call errstart()
129 * unconditionally.
130 *
131 * If elevel >= ERROR, the call will not return; we try to inform the compiler
132 * of that via pg_unreachable(). However, no useful optimization effect is
133 * obtained unless the compiler sees elevel as a compile-time constant, else
134 * we're just adding code bloat. So, if __builtin_constant_p is available,
135 * use that to cause the second if() to vanish completely for non-constant
136 * cases. We avoid using a local variable because it's not necessary and
137 * prevents gcc from making the unreachability deduction at optlevel -O0.
138 *----------
139 */
140#ifdef HAVE__BUILTIN_CONSTANT_P
141#define ereport_domain(elevel, domain, ...) \
142 do { \
143 pg_prevent_errno_in_scope(); \
144 if (__builtin_constant_p(elevel) && (elevel) >= ERROR ? \
145 errstart_cold(elevel, domain) : \
146 errstart(elevel, domain)) \
147 __VA_ARGS__, errfinish(__FILE__, __LINE__, __func__); \
148 if (__builtin_constant_p(elevel) && (elevel) >= ERROR) \
149 pg_unreachable(); \
150 } while(0)
151#else /* !HAVE__BUILTIN_CONSTANT_P */
152#define ereport_domain(elevel, domain, ...) \
153 do { \
154 const int elevel_ = (elevel); \
155 pg_prevent_errno_in_scope(); \
156 if (errstart(elevel_, domain)) \
157 __VA_ARGS__, errfinish(__FILE__, __LINE__, __func__); \
158 if (elevel_ >= ERROR) \
159 pg_unreachable(); \
160 } while(0)
161#endif /* HAVE__BUILTIN_CONSTANT_P */
162
163#define ereport(elevel, ...) \
164 ereport_domain(elevel, TEXTDOMAIN, __VA_ARGS__)
166#define TEXTDOMAIN NULL
167
168extern bool message_level_is_interesting(int elevel);
170extern bool errstart(int elevel, const char *domain);
171extern pg_attribute_cold bool errstart_cold(int elevel, const char *domain);
172extern void errfinish(const char *filename, int lineno, const char *funcname);
173
174extern int errcode(int sqlerrcode);
175
176extern int errcode_for_file_access(void);
177extern int errcode_for_socket_access(void);
178
179extern int errmsg(const char *fmt,...) pg_attribute_printf(1, 2);
180extern int errmsg_internal(const char *fmt,...) pg_attribute_printf(1, 2);
181
182extern int errmsg_plural(const char *fmt_singular, const char *fmt_plural,
183 unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
185extern int errdetail(const char *fmt,...) pg_attribute_printf(1, 2);
186extern int errdetail_internal(const char *fmt,...) pg_attribute_printf(1, 2);
187
188extern int errdetail_log(const char *fmt,...) pg_attribute_printf(1, 2);
189
190extern int errdetail_log_plural(const char *fmt_singular,
191 const char *fmt_plural,
192 unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
193
194extern int errdetail_plural(const char *fmt_singular, const char *fmt_plural,
195 unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
196
197extern int errhint(const char *fmt,...) pg_attribute_printf(1, 2);
198extern int errhint_internal(const char *fmt,...) pg_attribute_printf(1, 2);
199
200extern int errhint_plural(const char *fmt_singular, const char *fmt_plural,
201 unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
202
203/*
204 * errcontext() is typically called in error context callback functions, not
205 * within an ereport() invocation. The callback function can be in a different
206 * module than the ereport() call, so the message domain passed in errstart()
207 * is not usually the correct domain for translating the context message.
208 * set_errcontext_domain() first sets the domain to be used, and
209 * errcontext_msg() passes the actual message.
210 */
211#define errcontext set_errcontext_domain(TEXTDOMAIN), errcontext_msg
212
213extern int set_errcontext_domain(const char *domain);
214
215extern int errcontext_msg(const char *fmt,...) pg_attribute_printf(1, 2);
216
217extern int errhidestmt(bool hide_stmt);
218extern int errhidecontext(bool hide_ctx);
219
220extern int errbacktrace(void);
221
222extern int errposition(int cursorpos);
223
224extern int internalerrposition(int cursorpos);
225extern int internalerrquery(const char *query);
227extern int err_generic_string(int field, const char *str);
228
229extern int geterrcode(void);
230extern int geterrlevel(void);
231extern int geterrposition(void);
232extern int getinternalerrposition(void);
233
234
235/*----------
236 * Old-style error reporting API: to be used in this way:
237 * elog(ERROR, "portal \"%s\" not found", stmt->portalname);
238 *----------
239 */
240#define elog(elevel, ...) \
241 ereport(elevel, errmsg_internal(__VA_ARGS__))
242
243
244/*----------
245 * Support for reporting "soft" errors that don't require a full transaction
246 * abort to clean up. This is to be used in this way:
247 * errsave(context,
248 * errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
249 * errmsg("invalid input syntax for type %s: \"%s\"",
250 * "boolean", in_str),
251 * ... other errxxx() fields as needed ...);
252 *
253 * "context" is a node pointer or NULL, and the remaining auxiliary calls
254 * provide the same error details as in ereport(). If context is not a
255 * pointer to an ErrorSaveContext node, then errsave(context, ...)
256 * behaves identically to ereport(ERROR, ...). If context is a pointer
257 * to an ErrorSaveContext node, then the information provided by the
258 * auxiliary calls is stored in the context node and control returns
259 * normally. The caller of errsave() must then do any required cleanup
260 * and return control back to its caller. That caller must check the
261 * ErrorSaveContext node to see whether an error occurred before
262 * it can trust the function's result to be meaningful.
263 *
264 * errsave_domain() allows a message domain to be specified; it is
265 * precisely analogous to ereport_domain().
266 *----------
267 */
268#define errsave_domain(context, domain, ...) \
269 do { \
270 struct Node *context_ = (context); \
271 pg_prevent_errno_in_scope(); \
272 if (errsave_start(context_, domain)) \
273 __VA_ARGS__, errsave_finish(context_, __FILE__, __LINE__, __func__); \
274 } while(0)
275
276#define errsave(context, ...) \
277 errsave_domain(context, TEXTDOMAIN, __VA_ARGS__)
279/*
280 * "ereturn(context, dummy_value, ...);" is exactly the same as
281 * "errsave(context, ...); return dummy_value;". This saves a bit
282 * of typing in the common case where a function has no cleanup
283 * actions to take after reporting a soft error. "dummy_value"
284 * can be empty if the function returns void.
285 */
286#define ereturn_domain(context, dummy_value, domain, ...) \
287 do { \
288 errsave_domain(context, domain, __VA_ARGS__); \
289 return dummy_value; \
290 } while(0)
291
292#define ereturn(context, dummy_value, ...) \
293 ereturn_domain(context, dummy_value, TEXTDOMAIN, __VA_ARGS__)
294
295extern bool errsave_start(struct Node *context, const char *domain);
296extern void errsave_finish(struct Node *context,
297 const char *filename, int lineno,
298 const char *funcname);
301/* Support for constructing error strings separately from ereport() calls */
302
303extern void pre_format_elog_string(int errnumber, const char *domain);
304extern char *format_elog_string(const char *fmt,...) pg_attribute_printf(1, 2);
305
306
307/* Support for attaching context information to error reports */
308
309typedef struct ErrorContextCallback
310{
312 void (*callback) (void *arg);
313 void *arg;
315
317
318
319/*----------
320 * API for catching ereport(ERROR) exits. Use these macros like so:
321 *
322 * PG_TRY();
323 * {
324 * ... code that might throw ereport(ERROR) ...
325 * }
326 * PG_CATCH();
327 * {
328 * ... error recovery code ...
329 * }
330 * PG_END_TRY();
331 *
332 * (The braces are not actually necessary, but are recommended so that
333 * pgindent will indent the construct nicely.) The error recovery code
334 * can either do PG_RE_THROW to propagate the error outwards, or do a
335 * (sub)transaction abort. Failure to do so may leave the system in an
336 * inconsistent state for further processing.
337 *
338 * For the common case that the error recovery code and the cleanup in the
339 * normal code path are identical, the following can be used instead:
340 *
341 * PG_TRY();
342 * {
343 * ... code that might throw ereport(ERROR) ...
344 * }
345 * PG_FINALLY();
346 * {
347 * ... cleanup code ...
348 * }
349 * PG_END_TRY();
350 *
351 * The cleanup code will be run in either case, and any error will be rethrown
352 * afterwards.
353 *
354 * You cannot use both PG_CATCH() and PG_FINALLY() in the same
355 * PG_TRY()/PG_END_TRY() block.
356 *
357 * Note: while the system will correctly propagate any new ereport(ERROR)
358 * occurring in the recovery section, there is a small limit on the number
359 * of levels this will work for. It's best to keep the error recovery
360 * section simple enough that it can't generate any new errors, at least
361 * not before popping the error stack.
362 *
363 * Note: an ereport(FATAL) will not be caught by this construct; control will
364 * exit straight through proc_exit(). Therefore, do NOT put any cleanup
365 * of non-process-local resources into the error recovery section, at least
366 * not without taking thought for what will happen during ereport(FATAL).
367 * The PG_ENSURE_ERROR_CLEANUP macros provided by storage/ipc.h may be
368 * helpful in such cases.
369 *
370 * Note: if a local variable of the function containing PG_TRY is modified
371 * in the PG_TRY section and used in the PG_CATCH section, that variable
372 * must be declared "volatile" for POSIX compliance. This is not mere
373 * pedantry; we have seen bugs from compilers improperly optimizing code
374 * away when such a variable was not marked. Beware that gcc's -Wclobbered
375 * warnings are just about entirely useless for catching such oversights.
376 *
377 * Each of these macros accepts an optional argument which can be specified
378 * to apply a suffix to the variables declared within the macros. This suffix
379 * can be used to avoid the compiler emitting warnings about shadowed
380 * variables when compiling with -Wshadow in situations where nested PG_TRY()
381 * statements are required. The optional suffix may contain any character
382 * that's allowed in a variable name. The suffix, if specified, must be the
383 * same within each component macro of the given PG_TRY() statement.
384 *----------
385 */
386#define PG_TRY(...) \
387 do { \
388 sigjmp_buf *_save_exception_stack##__VA_ARGS__ = PG_exception_stack; \
389 ErrorContextCallback *_save_context_stack##__VA_ARGS__ = error_context_stack; \
390 sigjmp_buf _local_sigjmp_buf##__VA_ARGS__; \
391 bool _do_rethrow##__VA_ARGS__ = false; \
392 if (sigsetjmp(_local_sigjmp_buf##__VA_ARGS__, 0) == 0) \
393 { \
394 PG_exception_stack = &_local_sigjmp_buf##__VA_ARGS__
395
396#define PG_CATCH(...) \
397 } \
398 else \
399 { \
400 PG_exception_stack = _save_exception_stack##__VA_ARGS__; \
401 error_context_stack = _save_context_stack##__VA_ARGS__
402
403#define PG_FINALLY(...) \
404 } \
405 else \
406 _do_rethrow##__VA_ARGS__ = true; \
407 { \
408 PG_exception_stack = _save_exception_stack##__VA_ARGS__; \
409 error_context_stack = _save_context_stack##__VA_ARGS__
410
411#define PG_END_TRY(...) \
412 } \
413 if (_do_rethrow##__VA_ARGS__) \
414 PG_RE_THROW(); \
415 PG_exception_stack = _save_exception_stack##__VA_ARGS__; \
416 error_context_stack = _save_context_stack##__VA_ARGS__; \
417 } while (0)
418
419#define PG_RE_THROW() \
420 pg_re_throw()
425/* Stuff that error handlers might want to use */
428 * ErrorData holds the data accumulated during any one ereport() cycle.
429 * Any non-NULL pointers must point to palloc'd data.
430 * (The const pointers are an exception; we assume they point at non-freeable
431 * constant strings.)
432 */
433typedef struct ErrorData
435 int elevel; /* error level */
436 bool output_to_server; /* will report to server log? */
437 bool output_to_client; /* will report to client? */
438 bool hide_stmt; /* true to prevent STATEMENT: inclusion */
439 bool hide_ctx; /* true to prevent CONTEXT: inclusion */
440 const char *filename; /* __FILE__ of ereport() call */
441 int lineno; /* __LINE__ of ereport() call */
442 const char *funcname; /* __func__ of ereport() call */
443 const char *domain; /* message domain */
444 const char *context_domain; /* message domain for context message */
445 int sqlerrcode; /* encoded ERRSTATE */
446 char *message; /* primary error message (translated) */
447 char *detail; /* detail error message */
448 char *detail_log; /* detail error message for server log only */
449 char *hint; /* hint message */
450 char *context; /* context message */
451 char *backtrace; /* backtrace */
452 const char *message_id; /* primary message's id (original string) */
453 char *schema_name; /* name of schema */
454 char *table_name; /* name of table */
455 char *column_name; /* name of column */
456 char *datatype_name; /* name of datatype */
457 char *constraint_name; /* name of constraint */
458 int cursorpos; /* cursor index into query string */
459 int internalpos; /* cursor index into internalquery */
460 char *internalquery; /* text of internally-generated query */
461 int saved_errno; /* errno at entry */
462
463 /* context containing associated non-constant strings */
465} ErrorData;
466
467extern void EmitErrorReport(void);
468extern ErrorData *CopyErrorData(void);
469extern void FreeErrorData(ErrorData *edata);
470extern void FlushErrorState(void);
471pg_noreturn extern void ReThrowError(ErrorData *edata);
472extern void ThrowErrorData(ErrorData *edata);
473pg_noreturn extern void pg_re_throw(void);
475extern char *GetErrorContextStack(void);
476
477/* Hook for intercepting messages before they are sent to the server log */
478typedef void (*emit_log_hook_type) (ErrorData *edata);
480
481
482/* GUC-configurable parameters */
483
484typedef enum
486 PGERROR_TERSE, /* single-line error messages */
487 PGERROR_DEFAULT, /* recommended style */
488 PGERROR_VERBOSE, /* all the facts, ma'am */
490
492extern PGDLLIMPORT char *Log_line_prefix;
497
498/* Log destination bitmap */
499#define LOG_DESTINATION_STDERR 1
500#define LOG_DESTINATION_SYSLOG 2
501#define LOG_DESTINATION_EVENTLOG 4
502#define LOG_DESTINATION_CSVLOG 8
503#define LOG_DESTINATION_JSONLOG 16
504
505/* Other exported functions */
506extern void log_status_format(StringInfo buf, const char *format,
507 ErrorData *edata);
508extern void DebugFileOpen(void);
509extern char *unpack_sql_state(int sql_state);
510extern bool in_error_recursion_trouble(void);
511
512/* Common functions shared across destinations */
513extern void reset_formatted_start_time(void);
514extern char *get_formatted_start_time(void);
515extern char *get_formatted_log_time(void);
516extern const char *get_backend_type_for_log(void);
517extern bool check_log_of_query(ErrorData *edata);
518extern const char *error_severity(int elevel);
519extern void write_pipe_chunks(char *data, int len, int dest);
520
521/* Destination-specific functions */
522extern void write_csvlog(ErrorData *edata);
523extern void write_jsonlog(ErrorData *edata);
524
525/*
526 * Write errors to stderr (or by equal means when stderr is
527 * not available). Used before ereport/elog can be used
528 * safely (memory context, GUC load etc)
529 */
530extern void write_stderr(const char *fmt,...) pg_attribute_printf(1, 2);
531
532#endif /* ELOG_H */
#define PGDLLIMPORT
Definition: c.h:1291
#define pg_attribute_cold
Definition: c.h:311
#define pg_noreturn
Definition: c.h:165
PGErrorVerbosity
Definition: elog.h:471
@ PGERROR_VERBOSE
Definition: elog.h:474
@ PGERROR_DEFAULT
Definition: elog.h:473
@ PGERROR_TERSE
Definition: elog.h:472
int getinternalerrposition(void)
Definition: elog.c:1633
int int errhidestmt(bool hide_stmt)
Definition: elog.c:1432
PGDLLIMPORT int Log_error_verbosity
Definition: elog.c:108
PGDLLIMPORT int Log_destination
Definition: elog.c:110
struct ErrorData ErrorData
void(* emit_log_hook_type)(ErrorData *edata)
Definition: elog.h:464
int errcode_for_socket_access(void)
Definition: elog.c:953
bool errsave_start(struct Node *context, const char *domain)
Definition: elog.c:629
int err_generic_string(int field, const char *str)
Definition: elog.c:1533
PGDLLIMPORT sigjmp_buf * PG_exception_stack
Definition: elog.c:96
int int errdetail_internal(const char *fmt,...) pg_attribute_printf(1
void errsave_finish(struct Node *context, const char *filename, int lineno, const char *funcname)
Definition: elog.c:681
int errhint(const char *fmt,...) pg_attribute_printf(1
int geterrlevel(void)
Definition: elog.c:1599
int internalerrquery(const char *query)
Definition: elog.c:1503
int int int errhint_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...) pg_attribute_printf(1
int internalerrposition(int cursorpos)
Definition: elog.c:1483
bool check_log_of_query(ErrorData *edata)
Definition: elog.c:2756
int geterrcode(void)
Definition: elog.c:1582
bool errstart(int elevel, const char *domain)
Definition: elog.c:342
void EmitErrorReport(void)
Definition: elog.c:1708
int errdetail(const char *fmt,...) pg_attribute_printf(1
char * GetErrorContextStack(void)
Definition: elog.c:2080
void DebugFileOpen(void)
Definition: elog.c:2132
void FreeErrorData(ErrorData *edata)
Definition: elog.c:1839
const char * error_severity(int elevel)
Definition: elog.c:3695
int int int pg_attribute_printf(2, 4)
int errmsg(const char *fmt,...) pg_attribute_printf(1
int int errmsg_internal(const char *fmt,...) pg_attribute_printf(1
int errcode_for_file_access(void)
Definition: elog.c:876
pg_noreturn void ReThrowError(ErrorData *edata)
Definition: elog.c:1975
void pre_format_elog_string(int errnumber, const char *domain)
Definition: elog.c:1666
int int int errmsg_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...) pg_attribute_printf(1
int errbacktrace(void)
Definition: elog.c:1092
char * get_formatted_start_time(void)
Definition: elog.c:2732
ErrorData * CopyErrorData(void)
Definition: elog.c:1767
PGDLLIMPORT char * Log_destination_string
Definition: elog.c:111
void FlushErrorState(void)
Definition: elog.c:1888
void write_stderr(const char *fmt,...) pg_attribute_printf(1
PGDLLIMPORT emit_log_hook_type emit_log_hook
Definition: elog.c:105
int errcontext_msg(const char *fmt,...) pg_attribute_printf(1
void ThrowErrorData(ErrorData *edata)
Definition: elog.c:1916
bool message_level_is_interesting(int elevel)
Definition: elog.c:272
void write_pipe_chunks(char *data, int len, int dest)
Definition: elog.c:3454
int errhidecontext(bool hide_ctx)
Definition: elog.c:1451
int int int errdetail_log(const char *fmt,...) pg_attribute_printf(1
int geterrposition(void)
Definition: elog.c:1616
PGDLLIMPORT char * Log_line_prefix
Definition: elog.c:109
void write_csvlog(ErrorData *edata)
Definition: csvlog.c:63
pg_attribute_cold bool errstart_cold(int elevel, const char *domain)
Definition: elog.c:326
void write_jsonlog(ErrorData *edata)
Definition: jsonlog.c:109
const char * get_backend_type_for_log(void)
Definition: elog.c:2779
int errcode(int sqlerrcode)
Definition: elog.c:853
pg_noreturn void pg_re_throw(void)
Definition: elog.c:2025
PGDLLIMPORT bool syslog_split_messages
Definition: elog.c:113
PGDLLIMPORT ErrorContextCallback * error_context_stack
Definition: elog.c:94
PGDLLIMPORT bool syslog_sequence_numbers
Definition: elog.c:112
char struct ErrorContextCallback ErrorContextCallback
char * format_elog_string(const char *fmt,...) pg_attribute_printf(1
void log_status_format(StringInfo buf, const char *format, ErrorData *edata)
Definition: elog.c:2841
char * get_formatted_log_time(void)
Definition: elog.c:2682
bool in_error_recursion_trouble(void)
Definition: elog.c:293
void errfinish(const char *filename, int lineno, const char *funcname)
Definition: elog.c:473
int errposition(int cursorpos)
Definition: elog.c:1467
char * unpack_sql_state(int sql_state)
Definition: elog.c:3194
int int int int errdetail_log_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...) pg_attribute_printf(1
int set_errcontext_domain(const char *domain)
Definition: elog.c:1412
void reset_formatted_start_time(void)
Definition: elog.c:2720
int errdetail_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...) pg_attribute_printf(1
int int errhint_internal(const char *fmt,...) pg_attribute_printf(1
const char * str
#define funcname
Definition: indent_codes.h:69
void * arg
static char format
const void size_t len
const void * data
static char * filename
Definition: pg_dumpall.c:127
static char * buf
Definition: pg_test_fsync.c:72
struct ErrorContextCallback * previous
Definition: elog.h:297
int internalpos
Definition: elog.h:445
char * schema_name
Definition: elog.h:439
char * context
Definition: elog.h:436
const char * domain
Definition: elog.h:429
char * internalquery
Definition: elog.h:446
int saved_errno
Definition: elog.h:447
int sqlerrcode
Definition: elog.h:431
struct MemoryContextData * assoc_context
Definition: elog.h:450
const char * filename
Definition: elog.h:426
bool output_to_server
Definition: elog.h:422
int elevel
Definition: elog.h:421
char * datatype_name
Definition: elog.h:442
char * detail
Definition: elog.h:433
const char * context_domain
Definition: elog.h:430
const char * funcname
Definition: elog.h:428
char * table_name
Definition: elog.h:440
char * backtrace
Definition: elog.h:437
char * message
Definition: elog.h:432
bool hide_stmt
Definition: elog.h:424
char * detail_log
Definition: elog.h:434
int lineno
Definition: elog.h:427
const char * message_id
Definition: elog.h:438
char * hint
Definition: elog.h:435
bool hide_ctx
Definition: elog.h:425
char * constraint_name
Definition: elog.h:443
int cursorpos
Definition: elog.h:444
bool output_to_client
Definition: elog.h:423
char * column_name
Definition: elog.h:441
Definition: nodes.h:135
static void callback(struct sockaddr *addr, struct sockaddr *mask, void *unused)
Definition: test_ifaddrs.c:46