mirror of
https://github.com/postgres/postgres.git
synced 2026-03-10 10:11:28 -04:00
20 lines
529 B
C
20 lines
529 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* explain.h--
|
|
* prototypes for explain.c
|
|
*
|
|
* Copyright (c) 1994-5, Regents of the University of California
|
|
*
|
|
* $Id: explain.h,v 1.6 1997/11/26 01:12:16 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef EXPLAIN_H
|
|
#define EXPLAIN_H
|
|
|
|
#include "tcop/dest.h"
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void ExplainQuery(Query *query, bool verbose, CommandDest dest);
|
|
|
|
#endif /* EXPLAIN_H */
|