~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/include/commands/explain.h

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * explain.h
 
4
 *        prototypes for explain.c
 
5
 *
 
6
 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
 
7
 * Portions Copyright (c) 1994-5, Regents of the University of California
 
8
 *
 
9
 * $PostgreSQL: pgsql/src/include/commands/explain.h,v 1.24 2004-12-31 22:03:28 pgsql Exp $
 
10
 *
 
11
 *-------------------------------------------------------------------------
 
12
 */
 
13
#ifndef EXPLAIN_H
 
14
#define EXPLAIN_H
 
15
 
 
16
#include "executor/executor.h"
 
17
#include "nodes/parsenodes.h"
 
18
#include "tcop/dest.h"
 
19
 
 
20
 
 
21
extern void ExplainQuery(ExplainStmt *stmt, DestReceiver *dest);
 
22
 
 
23
extern TupleDesc ExplainResultDesc(ExplainStmt *stmt);
 
24
 
 
25
extern void ExplainOnePlan(QueryDesc *queryDesc, ExplainStmt *stmt,
 
26
                           TupOutputState *tstate);
 
27
 
 
28
#endif   /* EXPLAIN_H */