diff options
Diffstat (limited to 'src/include/utils/elog.h')
-rw-r--r-- | src/include/utils/elog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 8d835d30ef5..86fd4deb9ea 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.83 2007/01/05 22:19:59 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.84 2007/03/02 23:37:23 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -137,6 +137,8 @@ errcontext(const char *fmt,...) the supplied arguments. */ __attribute__((format(printf, 1, 2))); +extern int errhidestmt(bool hide_stmt); + extern int errfunction(const char *funcname); extern int errposition(int cursorpos); @@ -240,6 +242,7 @@ typedef struct ErrorData bool output_to_server; /* will report to server log? */ bool output_to_client; /* will report to client? */ bool show_funcname; /* true to force funcname inclusion */ + bool hide_stmt; /* true to prevent STATEMENT: inclusion */ const char *filename; /* __FILE__ of ereport() call */ int lineno; /* __LINE__ of ereport() call */ const char *funcname; /* __func__ of ereport() call */ |