Re: [COMMITTERS] pgsql: Replace the array-style TupleTable data structure with a simple

2009-09-27 Thread Robert Haas
On Sun, Sep 27, 2009 at 4:09 PM, Tom Lane wrote: > Log Message: > --- > 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 > inc

[COMMITTERS] pgsql: Remove no-longer-needed ExecCountSlots infrastructure.

2009-09-27 Thread Tom Lane
Log Message: --- Remove no-longer-needed ExecCountSlots infrastructure. Modified Files: -- pgsql/src/backend/executor: execProcnode.c (r1.65 -> r1.66) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/executor/execProcnode.c?r1=1.65&r2=1.66)

[COMMITTERS] pgsql: Replace the array-style TupleTable data structure with a simple

2009-09-27 Thread Tom Lane
Log Message: --- 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.