From 89fa551808e3d4da4325f5ccf20d26d731bc577f Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 18 Sep 2001 01:59:07 +0000 Subject: EXPLAIN ANALYZE feature to measure and show actual runtimes and tuple counts alongside the planner's estimates. By Martijn van Oosterhout, with some further work by Tom Lane. --- src/backend/nodes/copyfuncs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/backend/nodes/copyfuncs.c') diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index cf9ad2e983c..1003bcf35d5 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.155 2001/08/26 16:55:59 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.156 2001/09/18 01:59:06 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -2262,6 +2262,7 @@ _copyExplainStmt(ExplainStmt *from) Node_Copy(from, newnode, query); newnode->verbose = from->verbose; + newnode->analyze = from->analyze; return newnode; } -- cgit v1.2.3