diff options
Diffstat (limited to 'src/include/commands/explain.h')
-rw-r--r-- | src/include/commands/explain.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index 040740490bd..69b2268920c 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994-5, Regents of the University of California * - * $Id: explain.h,v 1.18 2003/02/02 23:46:38 tgl Exp $ + * $Id: explain.h,v 1.19 2003/05/06 20:26:27 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -18,7 +18,10 @@ #include "tcop/dest.h" -extern void ExplainQuery(ExplainStmt *stmt, CommandDest dest); +extern void ExplainQuery(ExplainStmt *stmt, DestReceiver *dest); + +extern TupleDesc ExplainResultDesc(ExplainStmt *stmt); + extern void ExplainOnePlan(QueryDesc *queryDesc, ExplainStmt *stmt, TupOutputState *tstate); |