diff options
author | Peter Eisentraut | 2000-04-16 15:46:40 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-04-16 15:46:40 +0000 |
commit | aae70b2dca2de4b0aa7f81a210b86626ef2e081e (patch) | |
tree | 78fa6e8fbe80394ebe7da12c26d74a584638168c /doc/src | |
parent | 82849df6c637c09fe484ed11e1035c158f128e81 (diff) |
more psql bug squashing:
\copy without arguments failed
commands with too many arguments were too silent
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 1a65ddaeee9..77a2ae8f916 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.30 2000/03/27 17:14:43 thomas Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.31 2000/04/16 15:46:39 petere Exp $ Postgres documentation --> @@ -443,16 +443,12 @@ testdb=> <varlistentry> - <term><literal>\do [ <replaceable class="parameter">pattern</replaceable> ]</literal></term> + <term><literal>\do [ <replaceable class="parameter">name</replaceable> ]</literal></term> <listitem> <para> Lists available operators with their operand and return types. - If <replaceable class="parameter">pattern</replaceable> + If <replaceable class="parameter">name</replaceable> is specified, only operators with that name will be shown. - (Since this is a regular expression, be sure to quote all special - characters in you operator name with backslashes. To prevent - interpretation of the backslash as a new command, you might also - wish to quote the argument.) </para> </listitem> </varlistentry> |