diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-08 00:09:22 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-08 00:09:22 +0000 |
commit | e86c31c74f75db55b325fc1078366c3fb78ec3fb (patch) | |
tree | d6108c90fe3669b4e43d3609aaf8b5898323cb76 /doc/src | |
parent | ef06003b06bcf41653127b3ba47071bf92a59b14 (diff) | |
download | postgresql-e86c31c74f75db55b325fc1078366c3fb78ec3fb.tar.gz postgresql-e86c31c74f75db55b325fc1078366c3fb78ec3fb.zip |
Update RAISE mention in manual to take string/variable not format/identifier.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/plsql.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/plsql.sgml b/doc/src/sgml/plsql.sgml index 87202b64450..43016496f1f 100644 --- a/doc/src/sgml/plsql.sgml +++ b/doc/src/sgml/plsql.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.25 2001/03/23 22:07:50 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.26 2001/05/08 00:09:22 momjian Exp $ --> <chapter id="plpgsql"> @@ -1306,7 +1306,7 @@ END LOOP; <productname>Postgres</productname> elog mechanism. <synopsis> -RAISE <replaceable class="parameter">level</replaceable> '<replaceable class="parameter">format</replaceable>' <optional>, <replaceable class="parameter">identifier</replaceable> <optional>...</optional></optional>; +RAISE <replaceable class="parameter">level</replaceable> '<replaceable class="parameter">string</replaceable>' <optional>, <replaceable class="parameter">variable</replaceable> <optional>...</optional></optional>; </synopsis> Inside the format, <literal>%</literal> is used as a placeholder for the |