summaryrefslogtreecommitdiff
path: root/src/include/access/heapam.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-02-13 05:35:11 +0000
committerBruce Momjian <bruce@momjian.us>2003-02-13 05:35:11 +0000
commit48ee6f4916c4b1104b66c03b33e427892a128a21 (patch)
tree3dae7198a49e583c7d155d6f69d4cd363fc32810 /src/include/access/heapam.h
parent0845b6f3265cc93e7700f98cb29e9a3a789aeed3 (diff)
This trivial patch removes the usage of some old statistics code that no
longer works -- IncrHeapAccessStat() didn't actually *do* anything anymore, so no reason to keep it around AFAICS. I also fixed a grammatical error in a comment. Neil Conway
Diffstat (limited to 'src/include/access/heapam.h')
-rw-r--r--src/include/access/heapam.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h
index 61c95268087..bae635cc635 100644
--- a/src/include/access/heapam.h
+++ b/src/include/access/heapam.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: heapam.h,v 1.79 2002/09/04 20:31:36 momjian Exp $
+ * $Id: heapam.h,v 1.80 2003/02/13 05:35:11 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -25,13 +25,6 @@
#include "utils/rel.h"
#include "utils/tqual.h"
-/* ----------------------------------------------------------------
- * leftover cruft from old statistics code
- * ----------------------------------------------------------------
- */
-
-#define IncrHeapAccessStat(x) ((void) 0)
-
/* ----------------
* fastgetattr
*