diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-04-23 06:41:56 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-04-23 06:41:56 +0000 |
commit | 7a2b417d1563e3d47acddebe6a0738bb401a1c22 (patch) | |
tree | 64a73213bcbf770dd5d6c4f2d540aad4c5758933 | |
parent | 3c461c8397f16d3d296eab1f9e54948fbdba4986 (diff) | |
download | postgresql-7a2b417d1563e3d47acddebe6a0738bb401a1c22.tar.gz postgresql-7a2b417d1563e3d47acddebe6a0738bb401a1c22.zip |
Vacuum help changed (ANALYZE).
-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 bc8dfed454a..5bc9f226cec 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.11 1997/04/02 04:18:26 vadim Exp $ + * $Id: psqlHelp.h,v 1.12 1997/04/23 06:41:56 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -166,6 +166,6 @@ static struct _helpStruct QL_HELP[] = { "update <class_name> set <attr1>=<expr1>,...<attrN>=<exprN> [from <from_clause>] [where <qual>];"}, { "vacuum", "vacuum the database, i.e. cleans out deleted records, updates statistics", - "vacuum [table];"}, + "vacuum [verbose] [analyze]\n\tor\nvacuum [verbose] table [analyze [(attr1, ... attrN)] ];"}, { NULL, NULL, NULL} /* important to keep a NULL terminator here! */ }; |