]> granicus.if.org Git - postgresql/blob - src/include/tcop/tcopdebug.h
Remove cvs keywords from all files.
[postgresql] / src / include / tcop / tcopdebug.h
1 /*-------------------------------------------------------------------------
2  *
3  * tcopdebug.h
4  *        #defines governing debugging behaviour in the traffic cop
5  *
6  *
7  * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/tcop/tcopdebug.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef TCOPDEBUG_H
15 #define TCOPDEBUG_H
16
17 /* ----------------------------------------------------------------
18  *              debugging defines.
19  *
20  *              If you want certain debugging behaviour, then #define
21  *              the variable to 1, else #undef it. -cim 10/26/89
22  * ----------------------------------------------------------------
23  */
24
25 /* ----------------
26  *              TCOP_SHOWSTATS controls whether or not buffer and
27  *              access method statistics are shown for each query.      -cim 2/9/89
28  * ----------------
29  */
30 #undef TCOP_SHOWSTATS
31
32 /* ----------------
33  *              TCOP_DONTUSENEWLINE controls the default setting of
34  *              the UseNewLine variable in postgres.c
35  * ----------------
36  */
37 #undef TCOP_DONTUSENEWLINE
38
39 /* ----------------------------------------------------------------
40  *              #defines controlled by above definitions
41  * ----------------------------------------------------------------
42  */
43
44 #endif   /* TCOPDEBUG_H */