diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-04-03 17:12:27 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-04-03 17:12:27 +0000 |
| commit | b03271590ef22c6c2a5d7496b8d3ed3b07bdc92c (patch) | |
| tree | 3e42eb78a3fbe73dd0f797307e6a17e0d685b395 /src/include/access/heapam.h | |
| parent | d3bf8c7097f823fd858e64697babfd0c1c134b06 (diff) | |
| download | postgresql-b03271590ef22c6c2a5d7496b8d3ed3b07bdc92c.tar.gz | |
Remove heap_release_fetch, which is no longer used anywhere; this simplifies
heap_fetch a little.
Diffstat (limited to 'src/include/access/heapam.h')
| -rw-r--r-- | src/include/access/heapam.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index 4a47973f9c..50592fa16c 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.132 2008/03/26 21:10:39 alvherre Exp $ + * $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.133 2008/04/03 17:12:27 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -153,9 +153,6 @@ extern HeapTuple heap_getnext(HeapScanDesc scan, ScanDirection direction); extern bool heap_fetch(Relation relation, Snapshot snapshot, HeapTuple tuple, Buffer *userbuf, bool keep_buf, Relation stats_relation); -extern bool heap_release_fetch(Relation relation, Snapshot snapshot, - HeapTuple tuple, Buffer *userbuf, bool keep_buf, - Relation stats_relation); extern bool heap_hot_search_buffer(ItemPointer tid, Buffer buffer, Snapshot snapshot, bool *all_dead); extern bool heap_hot_search(ItemPointer tid, Relation relation, |
