From 35c2a3c3cf8ef497b090c9dbfae1bf565c62b2a3 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 17 Sep 2008 13:15:55 +0000 Subject: Allow ShowBufferUsage() to report the number of reads/writes that have occurred to temporary files. This replaces the unused NDirectFileRead/NDirectFileWrite counters. Itagaki Takahiro --- src/include/executor/execdebug.h | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'src/include/executor/execdebug.h') 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 */ -- cgit v1.2.3