From 285610e9ea9c906b5e93f956d3606e65efdd7c55 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 17 Jun 1999 23:45:32 +0000 Subject: [PATCH] Explain didn't handle inheritance correctly (it didn't manipulate rtable the same way executor does). --- src/backend/commands/explain.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c index 66fcd8647b..dd83129be4 100644 --- a/src/backend/commands/explain.c +++ b/src/backend/commands/explain.c @@ -4,7 +4,7 @@ * * Copyright (c) 1994-5, Regents of the University of California * - * $Id: explain.c,v 1.37 1999/05/25 16:08:23 momjian Exp $ + * $Id: explain.c,v 1.38 1999/06/17 23:45:32 tgl Exp $ * */ #include @@ -313,7 +313,6 @@ explain_outNode(StringInfo str, Plan *plan, int indent, ExplainState *es) { ResTarget *rtentry; - es->rtable = appendplan->inheritrtable; rtentry = nth(whichplan, appendplan->inheritrtable); Assert(rtentry != NULL); rt_store(appendplan->inheritrelid, es->rtable, rtentry); -- 2.40.0