Commit ed3f6916 authored by Tom Lane's avatar Tom Lane

EXPLAIN didn't know about 'Materialize' plan nodes.

parent 91f82de4
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* *
* Copyright (c) 1994-5, Regents of the University of California * Copyright (c) 1994-5, Regents of the University of California
* *
* $Id: explain.c,v 1.44 1999/08/09 06:20:21 momjian Exp $ * $Id: explain.c,v 1.45 1999/08/16 23:47:23 tgl Exp $
* *
*/ */
...@@ -176,6 +176,9 @@ explain_outNode(StringInfo str, Plan *plan, int indent, ExplainState *es) ...@@ -176,6 +176,9 @@ explain_outNode(StringInfo str, Plan *plan, int indent, ExplainState *es)
case T_Noname: case T_Noname:
pname = "Noname Scan"; pname = "Noname Scan";
break; break;
case T_Material:
pname = "Materialize";
break;
case T_Sort: case T_Sort:
pname = "Sort"; pname = "Sort";
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment