~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

« back to all changes in this revision

Viewing changes to src/include/tcop/tcopdebug.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-11 10:41:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110511104153-psbh2o58553fv1m0
Tags: upstream-9.1~beta1
ImportĀ upstreamĀ versionĀ 9.1~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * tcopdebug.h
 
4
 *        #defines governing debugging behaviour in the traffic cop
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2011, 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 */