diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-02-13 05:35:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-02-13 05:35:11 +0000 |
commit | 48ee6f4916c4b1104b66c03b33e427892a128a21 (patch) | |
tree | 3dae7198a49e583c7d155d6f69d4cd363fc32810 /src/backend/access/heap/hio.c | |
parent | 0845b6f3265cc93e7700f98cb29e9a3a789aeed3 (diff) | |
download | postgresql-48ee6f4916c4b1104b66c03b33e427892a128a21.tar.gz postgresql-48ee6f4916c4b1104b66c03b33e427892a128a21.zip |
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/backend/access/heap/hio.c')
-rw-r--r-- | src/backend/access/heap/hio.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/backend/access/heap/hio.c b/src/backend/access/heap/hio.c index 67eb4ad7e24..53cf41c4449 100644 --- a/src/backend/access/heap/hio.c +++ b/src/backend/access/heap/hio.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Id: hio.c,v 1.46 2002/08/06 02:36:33 tgl Exp $ + * $Id: hio.c,v 1.47 2003/02/13 05:35:11 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -37,12 +37,6 @@ RelationPutHeapTuple(Relation relation, ItemId itemId; Item item; - /* - * increment access statistics - */ - IncrHeapAccessStat(local_RelationPutHeapTuple); - IncrHeapAccessStat(global_RelationPutHeapTuple); - /* Add the tuple to the page */ pageHeader = BufferGetPage(buffer); |