1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-04 20:11:56 +03:00

Transaction log manager core code.

It doesn't work currently but also don't break anything -:)
This commit is contained in:
Vadim B. Mikheev
1999-09-27 15:48:12 +00:00
parent 2902c4c640
commit 30659d43eb
10 changed files with 1583 additions and 16 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: elog.h,v 1.12 1999/09/11 19:06:25 tgl Exp $
* $Id: elog.h,v 1.13 1999/09/27 15:48:12 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -17,7 +17,9 @@
#define ERROR (-1) /* user error - return to known state */
#define FATAL 1 /* fatal error - abort process */
#define REALLYFATAL 2 /* take down the other backends with me */
#define STOP REALLYFATAL
#define DEBUG (-2) /* debug message */
#define LOG DEBUG
#define NOIND (-3) /* debug message, don't indent as far */
extern void elog(int lev, const char *fmt, ...);