Commit 24baa1d9 authored by Bruce Momjian's avatar Bruce Momjian

Fix raise mention that %% output as %.

parent eb62f076
<!-- <!--
$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"> <chapter id="plpgsql">
...@@ -1310,8 +1310,8 @@ RAISE <replaceable class="parameter">level</replaceable> '<replaceable class="pa ...@@ -1310,8 +1310,8 @@ RAISE <replaceable class="parameter">level</replaceable> '<replaceable class="pa
</synopsis> </synopsis>
Inside the format, <literal>%</literal> is replaced by the next argument's Inside the format, <literal>%</literal> is replaced by the next argument's
external representation. Double %'s are left unchanged for internal external representation. Double <literal>%</literal>'s are output as <literal>%</literal>.
reasons. Possible levels are DEBUG (silently suppressed in production Possible levels are DEBUG (silently suppressed in production
running databases), NOTICE (written into the database log and forwarded to running databases), NOTICE (written into the database log and forwarded to
the client application) and EXCEPTION (written into the database log and the client application) and EXCEPTION (written into the database log and
aborting the transaction). aborting the transaction).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment