pgsql-server/src backend/access/hash/hash.c ba ...

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql-server/src backend/access/hash/hash.c ba ...
Date: 2003-09-02 18:13:32
Message-ID: 20030902181332.66390D1B53A@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: tgl(at)svr1(dot)postgresql(dot)org 03/09/02 15:13:32

Modified files:
src/backend/access/hash: hash.c hashinsert.c hashovfl.c
hashpage.c hashsearch.c hashutil.c
src/include/access: hash.h

Log message:
Several fixes for hash indexes that involve changing the on-disk index
layout; therefore, this change forces REINDEX of hash indexes (though
not a full initdb). Widen hashm_ntuples to double so that hash space
management doesn't get confused by more than 4G entries; enlarge the
allowed number of free-space-bitmap pages; replace the useless bshift
field with a useful bmshift field; eliminate 4 bytes of wasted space
in the per-page special area.

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2003-09-02 19:04:13 pgsql-server/src/backend bootstrap/bootstrap.c ...
Previous Message Tom Lane 2003-09-02 03:29:02 pgsql-server/src/backend/access/hash README