From 9a342d2035996720131ff96647f45f76b368ec53 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 17 Jan 2001 16:34:34 +0000 Subject: [PATCH] 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' --- doc/src/sgml/plsql.sgml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/plsql.sgml b/doc/src/sgml/plsql.sgml index a035121c53..33e73b8c45 100644 --- a/doc/src/sgml/plsql.sgml +++ b/doc/src/sgml/plsql.sgml @@ -1,5 +1,5 @@ @@ -472,7 +472,7 @@ END IF; database return a value. Thus, the normal way to call a function is to execute a SELECT query or doing an assignment (resulting in a PL/pgSQL internal SELECT). But there are cases where someone - isn't interested int the functions result. + isn't interested in the functions result. PERFORM query @@ -564,7 +564,7 @@ RETURN expression can throw messages into the Postgres elog mechanism. -RAISE level format'' [, identifier [...]]; +RAISE level 'format' [, identifier [...]]; Inside the format, "%" is used as a placeholder for the subsequent comma-separated identifiers. Possible levels are -- 2.40.0