00001 /*------------------------------------------------------------------------- 00002 * 00003 * tcopdebug.h 00004 * #defines governing debugging behaviour in the traffic cop 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * src/include/tcop/tcopdebug.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef TCOPDEBUG_H 00015 #define TCOPDEBUG_H 00016 00017 /* ---------------------------------------------------------------- 00018 * debugging defines. 00019 * 00020 * If you want certain debugging behaviour, then #define 00021 * the variable to 1, else #undef it. -cim 10/26/89 00022 * ---------------------------------------------------------------- 00023 */ 00024 00025 /* ---------------- 00026 * TCOP_SHOWSTATS controls whether or not buffer and 00027 * access method statistics are shown for each query. -cim 2/9/89 00028 * ---------------- 00029 */ 00030 #undef TCOP_SHOWSTATS 00031 00032 /* ---------------- 00033 * TCOP_DONTUSENEWLINE controls the default setting of 00034 * the UseNewLine variable in postgres.c 00035 * ---------------- 00036 */ 00037 #undef TCOP_DONTUSENEWLINE 00038 00039 /* ---------------------------------------------------------------- 00040 * #defines controlled by above definitions 00041 * ---------------------------------------------------------------- 00042 */ 00043 00044 #endif /* TCOPDEBUG_H */