Replace the array-style TupleTable data structure with a simple List of

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

Commit: f92e8a4b5ee6a22252cbba012d629f5cefef913f
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2009-09-27T20:09:58Z
Releases: 9.0.0
Replace the array-style TupleTable data structure with a simple List of
TupleTableSlot nodes.  This eliminates the need to count in advance
how many Slots will be needed, which seems more than worth the small
increase in the amount of palloc traffic during executor startup.

The ExecCountSlots infrastructure is now all dead code, but I'll remove it
in a separate commit for clarity.

Per a comment from Robert Haas.

Files