pgsql: Marginal performance improvements in dynahash: make sure that

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Marginal performance improvements in dynahash: make sure that
Date: 2005-05-06 00:19:14
Message-ID: 20050506001914.C181F53D7A@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Marginal performance improvements in dynahash: make sure that everything
associated with a hashtable is allocated in that hashtable's private
context, so that hash_destroy only has to destroy the context and not
do any retail pfree's; and tighten the inner loop of hash_seq_search.

Modified Files:
--------------
pgsql/src/backend/utils/hash:
dynahash.c (r1.58 -> r1.59)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/hash/dynahash.c.diff?r1=1.58&r2=1.59)

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2005-05-06 02:56:44 pgsql: Convert some mulit-line comments in copy.c to single line, as
Previous Message Tom Lane 2005-05-05 22:18:28 pgsql: Fix bogus hashtable setup.