Tweak default memory context allocation policy so that a context is not

Tom Lane <tgl@sss.pgh.pa.us>

Commit: e64c7feb2fd80c89d2220cbe9e026a031f34509c
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2002-12-15T21:01:34Z
Releases: 7.4.1
Tweak default memory context allocation policy so that a context is not
given any malloc block until something is first allocated in it; but
thereafter, MemoryContextReset won't release that first malloc block.
This preserves the quick-reset property of the original policy, without
forcing 8K to be allocated to every context whether any of it is ever
used or not.  Also, remove some more no-longer-needed explicit freeing
during ExecEndPlan.

Files