aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-05-08 02:26:09 +0000
committerBruce Momjian <bruce@momjian.us>2001-05-08 02:26:09 +0000
commit24baa1d95f68d74eadf8560815e92630953fda4b (patch)
tree78dfcb060b687ef98c2299e0acc7d36d1c06253a
parenteb62f076d0744fdf559e0e39a123db9cfe7b36d1 (diff)
downloadpostgresql-24baa1d95f68d74eadf8560815e92630953fda4b.tar.gz
postgresql-24baa1d95f68d74eadf8560815e92630953fda4b.zip
Fix raise mention that %% output as %.
-rw-r--r--doc/src/sgml/plsql.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/plsql.sgml b/doc/src/sgml/plsql.sgml
index 4ed6ca14287..dfc0c8dda98 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.27 2001/05/08 00:30:41 momjian Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.28 2001/05/08 02:26:09 momjian Exp $
-->
<chapter id="plpgsql">
@@ -1310,8 +1310,8 @@ RAISE <replaceable class="parameter">level</replaceable> '<replaceable class="pa
</synopsis>
Inside the format, <literal>%</literal> is replaced by the next argument's
- external representation. Double %'s are left unchanged for internal
- reasons. Possible levels are DEBUG (silently suppressed in production
+ external representation. Double <literal>%</literal>'s are output as <literal>%</literal>.
+ Possible levels are DEBUG (silently suppressed in production
running databases), NOTICE (written into the database log and forwarded to
the client application) and EXCEPTION (written into the database log and
aborting the transaction).