diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-09-17 13:15:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-09-17 13:15:55 +0000 |
commit | 35c2a3c3cf8ef497b090c9dbfae1bf565c62b2a3 (patch) | |
tree | fa79e5ba6a59c64f31952ca0b445bed542c24585 /src/include/executor | |
parent | 32f159cc55bacad6a4737d3584cb69698c33fc86 (diff) | |
download | postgresql-35c2a3c3cf8ef497b090c9dbfae1bf565c62b2a3.tar.gz postgresql-35c2a3c3cf8ef497b090c9dbfae1bf565c62b2a3.zip |
Allow ShowBufferUsage() to report the number of reads/writes that have
occurred to temporary files. This replaces the unused
NDirectFileRead/NDirectFileWrite counters.
Itagaki Takahiro
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/execdebug.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h index 1599aef079b..374030d21f1 100644 --- a/src/include/executor/execdebug.h +++ b/src/include/executor/execdebug.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/executor/execdebug.h,v 1.32 2008/01/01 19:45:57 momjian Exp $ + * $PostgreSQL: pgsql/src/include/executor/execdebug.h,v 1.33 2008/09/17 13:15:55 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -190,19 +190,4 @@ extern int NIndexTupleInserted; #define MJ_DEBUG_PROC_NODE(slot) #endif /* EXEC_MERGEJOINDEBUG */ -/* ---------------------------------------------------------------- - * DO NOT DEFINE THESE EVER OR YOU WILL BURN! - * ---------------------------------------------------------------- - */ -/* ---------------- - * NOTYET is placed around any code not yet implemented - * in the executor. Only remove these when actually implementing - * said code. - * ---------------- - */ -#undef NOTYET - -extern long NDirectFileRead; -extern long NDirectFileWrite; - #endif /* ExecDebugIncluded */ |