diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-07-24 19:11:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-07-24 19:11:53 +0000 |
commit | 4d8a5efcef9647945455c17e0d09730a5bda8b77 (patch) | |
tree | a6ded664556b8219b570825fd19819966e938476 /src | |
parent | 9ad6e0db30631ce5a68d5980f1cc8e0f5861852b (diff) | |
download | postgresql-4d8a5efcef9647945455c17e0d09730a5bda8b77.tar.gz postgresql-4d8a5efcef9647945455c17e0d09730a5bda8b77.zip |
Add single quotes to \\h set help
Diffstat (limited to 'src')
-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 2937187712f..e3b2ed0cf8c 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.19 1997/06/12 16:43:08 momjian Exp $ + * $Id: psqlHelp.h,v 1.20 1997/07/24 19:11:53 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -166,7 +166,7 @@ static struct _helpStruct QL_HELP[] = { "select [distinct on <attr>] <expr1> [as <attr1>], ... <exprN> [as <attrN>]\n\t[into table <class_name>] [from <from_list>]\n\t[where <qual>]\n\t[order by <attr1>\n\t\t[using <op1>],..<attrN> [[using <opN>] | ASC | DESC]];" }, { "set", "set run-time environment", - "set DateStyle to {ISO | SQL | Postgres | European | US | NonEuropean}\nset GEQO to {ON[=#] | OFF}\nset R_PLANS to {ON | OFF}"}, + "set DateStyle to {'ISO' | 'SQL' | 'Postgres' | 'European' | 'US' | 'NonEuropean'}\nset GEQO to {'ON[=#]' | 'OFF'}\nset R_PLANS to {'ON' | 'OFF'}"}, { "show", "show current run-time environment", "show {DateStyle | GEQO | R_PLANS}"}, |