diff options
Diffstat (limited to 'src/include/utils/elog.h')
-rw-r--r-- | src/include/utils/elog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 270bfbcfe5d..cb7f8c30c30 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -157,8 +157,10 @@ #define TEXTDOMAIN NULL -extern bool pg_attribute_cold errstart_cold(int elevel, const char *domain); +extern bool message_level_is_interesting(int elevel); + extern bool errstart(int elevel, const char *domain); +extern bool pg_attribute_cold errstart_cold(int elevel, const char *domain); extern void errfinish(const char *filename, int lineno, const char *funcname); extern int errcode(int sqlerrcode); |