From 1ee26b776475155ad1fb00fa3ed0a93659ffadad Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 18 Jun 2000 22:44:35 +0000 Subject: 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. --- src/backend/nodes/print.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/backend/nodes/print.c') diff --git a/src/backend/nodes/print.c b/src/backend/nodes/print.c index 8d3cd8d2a7b..104735cf6f6 100644 --- a/src/backend/nodes/print.c +++ b/src/backend/nodes/print.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.38 2000/04/12 17:15:16 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.39 2000/06/18 22:44:05 tgl Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -315,9 +315,6 @@ plannode_type(Plan *p) case T_HashJoin: return "HASHJOIN"; break; - case T_Noname: - return "NONAME"; - break; case T_Material: return "MATERIAL"; break; @@ -333,9 +330,6 @@ plannode_type(Plan *p) case T_Hash: return "HASH"; break; - case T_Choose: - return "CHOOSE"; - break; case T_Group: return "GROUP"; break; -- cgit v1.2.3