88 *
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/access/hash/hashsearch.c,v 1.40 2005/10/15 02:49:08 momjian Exp $
11+ * $PostgreSQL: pgsql/src/backend/access/hash/hashsearch.c,v 1.41 2005/10/18 01:06:23 tgl Exp $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
@@ -247,7 +247,6 @@ _hash_step(IndexScanDesc scan, Buffer *bufP, ScanDirection dir)
247247HashPageOpaque opaque ;
248248OffsetNumber maxoff ;
249249OffsetNumber offnum ;
250- Bucket bucket ;
251250BlockNumber blkno ;
252251HashItem hitem ;
253252IndexTuple itup ;
@@ -258,7 +257,6 @@ _hash_step(IndexScanDesc scan, Buffer *bufP, ScanDirection dir)
258257page = BufferGetPage (buf );
259258_hash_checkpage (rel ,page ,LH_BUCKET_PAGE |LH_OVERFLOW_PAGE );
260259opaque = (HashPageOpaque )PageGetSpecialPointer (page );
261- bucket = opaque -> hasho_bucket ;
262260
263261/*
264262 * If _hash_step is called from _hash_first, current will not be valid, so
@@ -274,8 +272,8 @@ _hash_step(IndexScanDesc scan, Buffer *bufP, ScanDirection dir)
274272/*
275273 * 'offnum' now points to the last tuple we have seen (if any).
276274 *
277- * continue to step through tuples until: 1) we get to the end of the bucket
278- * chain or 2) we find a valid tuple.
275+ * continue to step through tuples until: 1) we get to the end of the
276+ *bucket chain or 2) we find a valid tuple.
279277 */
280278do
281279{