/*------------------------------------------------------------------------- * * explain.h * prototypes for explain.c * * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994-5, Regents of the University of California * * $Id: explain.h,v 1.16 2002/03/24 04:31:09 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef EXPLAIN_H #define EXPLAIN_H #include "nodes/parsenodes.h" #include "tcop/dest.h" extern void ExplainQuery(ExplainStmt *stmt, CommandDest dest); #endif /* EXPLAIN_H */