diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-04-14 23:48:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-04-14 23:48:07 +0000 |
commit | eaffc61675eb680f7b96a54838529aa85b49a6ee (patch) | |
tree | 064a589fe5481ce9ebfd303dfd41eeaa56fdafa5 | |
parent | faba9fa7470d44df2e033bcbf1024da7c3216db8 (diff) | |
download | postgresql-eaffc61675eb680f7b96a54838529aa85b49a6ee.tar.gz postgresql-eaffc61675eb680f7b96a54838529aa85b49a6ee.zip |
Correct psql's online help for CREATE OPERATOR, which did
not match what the backend actually accepts.
-rw-r--r-- | src/bin/psql/psqlHelp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/psqlHelp.h b/src/bin/psql/psqlHelp.h index 461c2df7007..a8b1623b86c 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.61 1999/03/24 06:57:20 ishii Exp $ + * $Id: psqlHelp.h,v 1.62 1999/04/14 23:48:07 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -102,8 +102,8 @@ static struct _helpStruct QL_HELP[] = { \t[LEFTARG = type1][,RIGHTARG = type2]\n\ \t,PROCEDURE = func_name,\n\ \t[,COMMUTATOR = com_op][,NEGATOR = neg_op]\n\ -\t[,RESTRICT = res_proc][,HASHES]\n\ -\t[,JOIN = join_proc][,SORT = sort_op1...sort_opN]);"}, +\t[,RESTRICT = res_proc][,JOIN = join_proc][,HASHES]\n\ +\t[,SORT1 = left_sort_op][,SORT2 = right_sort_op]);"}, {"create rule", "define a new rule", "\ |