1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Change EXPLAIN options to just use VERBOSE.

This commit is contained in:
Bruce Momjian
1997-01-16 14:56:59 +00:00
parent b00c2c1d3f
commit 3a02ccfa1d
6 changed files with 19 additions and 40 deletions

View File

@@ -5,13 +5,13 @@
*
* Copyright (c) 1994-5, Regents of the University of California
*
* $Id: explain.h,v 1.1 1996/08/28 07:21:47 scrappy Exp $
* $Id: explain.h,v 1.2 1997/01/16 14:56:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef EXPLAIN_H
#define EXPLAIN_H
extern void ExplainQuery(Query *query, List *options, CommandDest dest);
extern void ExplainQuery(Query *query, bool verbose, CommandDest dest);
#endif /* EXPLAIN_H*/

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.9 1997/01/13 03:45:02 momjian Exp $
* $Id: parsenodes.h,v 1.10 1997/01/16 14:56:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -408,7 +408,7 @@ typedef struct VacuumStmt {
typedef struct ExplainStmt {
NodeTag type;
Query *query; /* the query */
List *options;
bool verbose; /* print plan info */
} ExplainStmt;