pgsql/src/include/nodes (memnodes.h)

Started by Tom Laneover 25 years ago1 messagescomitters
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us

Date: Friday, December 1, 2000 @ 13:14:29
Author: tgl

Update of /home/projects/pgsql/cvsroot/pgsql/src/include/nodes
from hub.org:/home/projects/pgsql/tmp/cvs-serv98598/src/include/nodes

Modified Files:
memnodes.h

----------------------------- Log Message -----------------------------

Pursuant to a pghackers discussion back around 11-Jul-00, get rid of aset.c's
not-very-good handling of mid-size allocation requests. Do everything via
either the "small" case (chunk size rounded up to power of 2) or the "large"
case (pass it straight off to malloc()). Increase the number of freelists
a little to set the breakpoint between these behaviors at 8K.