diff options
author | Bruce Momjian | 1996-10-03 04:20:41 +0000 |
---|---|---|
committer | Bruce Momjian | 1996-10-03 04:20:41 +0000 |
commit | 75e2cbcec36b465058e4114fab2fe09a4f8c0aec (patch) | |
tree | 718ca6e4b59e24e22aa3b28763c9361b41faa102 | |
parent | fedb734df9effaaf82b351dad310d2c249fe968d (diff) |
New vacuum option.
-rw-r--r-- | src/bin/psql/psqlHelp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psqlHelp.h b/src/bin/psql/psqlHelp.h index eee4cf30c5d..a10b0a4dcbf 100644 --- a/src/bin/psql/psqlHelp.h +++ b/src/bin/psql/psqlHelp.h @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: psqlHelp.h,v 1.3 1996/08/24 20:49:41 scrappy Exp $ + * $Id: psqlHelp.h,v 1.4 1996/10/03 04:20:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -163,6 +163,6 @@ static struct _helpStruct QL_HELP[] = { "update <relname> set <attr1>=<expr1>,...<attrN>=<exprN> [from <from_clause>] [where <qual>];"}, { "vacuum", "vacuum the database, i.e. cleans out deleted records, updates statistics", - "vacuum;"}, + "vacuum [table];"}, { NULL, NULL, NULL} /* important to keep a NULL terminator here! */ }; |