Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ed3f691

Browse files
committed
EXPLAIN didn't know about 'Materialize' plan nodes.
1 parent 91f82de commit ed3f691

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/backend/commands/explain.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Copyright (c) 1994-5, Regents of the University of California
66
*
7-
* $Id: explain.c,v 1.44 1999/08/09 06:20:21 momjian Exp $
7+
* $Id: explain.c,v 1.45 1999/08/16 23:47:23 tgl Exp $
88
*
99
*/
1010

@@ -176,6 +176,9 @@ explain_outNode(StringInfo str, Plan *plan, int indent, ExplainState *es)
176176
case T_Noname:
177177
pname = "Noname Scan";
178178
break;
179+
case T_Material:
180+
pname = "Materialize";
181+
break;
179182
case T_Sort:
180183
pname = "Sort";
181184
break;

0 commit comments

Comments
 (0)