Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9a342d2

Browse files
committed
There are misprints in postgres doc., in :
Chapter 10. PL/pgSQL - SQL Procedural Language (c40914117.htm) Statements ... (resulting in a PL/pgSQL internal SELECT). But there are cases where someone isn't interested int -----------------------------------------(have to be)--> But there are cases where someone isn't interested in the functions result. RAISE level format'' --(have to be)--> RAISE level 'format'
1 parent 26e0321 commit 9a342d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/plsql.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.14 2001/01/13 23:58:55 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.15 2001/01/17 16:34:34 momjian Exp $
33
-->
44

55
<chapter id="plsql">
@@ -472,7 +472,7 @@ END IF;
472472
database return a value. Thus, the normal way to call a function
473473
is to execute a SELECT query or doing an assignment (resulting
474474
in a PL/pgSQL internal SELECT). But there are cases where someone
475-
isn't interested int the functions result.
475+
isn't interested in the functions result.
476476
<programlisting>
477477
PERFORM <replaceable>query</replaceable>
478478
</programlisting>
@@ -564,7 +564,7 @@ RETURN <replaceable>expression</replaceable>
564564
can throw messages into the <productname>Postgres</productname>
565565
elog mechanism.
566566
<programlisting>
567-
RAISE <replaceable class="parameter">level</replaceable> <replaceable class="parameter">format</replaceable>'' [, <replaceable class="parameter">identifier</replaceable> [...]];
567+
RAISE <replaceable class="parameter">level</replaceable> '<replaceable class="parameter">format</replaceable>' [, <replaceable class="parameter">identifier</replaceable> [...]];
568568
</programlisting>
569569
Inside the format, "<literal>%</literal>" is used as a placeholder for the
570570
subsequent comma-separated identifiers. Possible levels are

0 commit comments

Comments
 (0)