pgsql/src/backend/commands (explain.c)

From: Tom Lane <tgl>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/backend/commands (explain.c)
Date: 2000-06-18 22:44:02
Message-ID: 200006182244.e5IMi2v10817@hub.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Date: Sunday, June 18, 2000 @ 18:43:59
Author: tgl

Update of /home/projects/pgsql/cvsroot/pgsql/src/backend/commands
from hub.org:/home/projects/pgsql/tmp/cvs-serv10398/backend/commands

Modified Files:
explain.c

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

Reimplement nodeMaterial to use a temporary BufFile (or even memory, if the
materialized tupleset is small enough) instead of a temporary relation.
This was something I was thinking of doing anyway for performance, and Jan
says he needs it for TOAST because he doesn't want to cope with toasting
noname relations. With this change, the 'noname table' support in heap.c
is dead code, and I have accordingly removed it. Also clean up 'noname'
plan handling in planner --- nonames are either sort or materialize plans,
and it seems less confusing to handle them separately under those names.

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2000-06-18 22:44:05 pgsql/src/backend/nodes (copyfuncs.c freefuncs.c outfuncs.c print.c readfuncs.c)
Previous Message Tom Lane 2000-06-18 22:43:57 pgsql/src/backend/catalog (heap.c index.c)