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

Added VERBOSE option to vacuum command.

This commit is contained in:
Bruce Momjian
1997-01-13 03:45:33 +00:00
parent febfe447a7
commit 0d3bf78e0b
7 changed files with 38 additions and 25 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: vacuum.h,v 1.4 1996/11/29 10:29:45 vadim Exp $
* $Id: vacuum.h,v 1.5 1997/01/13 03:44:54 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -54,7 +54,7 @@ typedef VRelListData *VRelList;
extern bool VacuumRunning;
extern void vc_abort(void);
extern void vacuum(char *vacrel);
extern void vacuum(char *vacrel, bool verbose);
#endif /* VACUUM_H */

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.8 1996/12/17 01:53:43 momjian Exp $
* $Id: parsenodes.h,v 1.9 1997/01/13 03:45:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -397,6 +397,7 @@ typedef struct ClusterStmt {
*/
typedef struct VacuumStmt {
NodeTag type;
bool verbose; /* print status info */
char *vacrel; /* table to vacuum */
} VacuumStmt;