mirror of
https://github.com/postgres/postgres.git
synced 2026-03-05 23:04:24 -05:00
Fix silly error in plpgsql example.
This commit is contained in:
parent
fa09b6d7b2
commit
7e422ac0e7
1 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.48 2001/11/15 23:32:39 tgl Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.49 2001/11/16 00:40:11 tgl Exp $
|
||||
-->
|
||||
|
||||
<chapter id="plpgsql">
|
||||
|
|
@ -1184,9 +1184,9 @@ END IF;
|
|||
<programlisting>
|
||||
IF number = 0 THEN
|
||||
result := ''zero'';
|
||||
ELSIF number < 0 THEN
|
||||
result := ''positive'';
|
||||
ELSIF number > 0 THEN
|
||||
result := ''positive'';
|
||||
ELSIF number < 0 THEN
|
||||
result := ''negative'';
|
||||
ELSE
|
||||
-- hmm, the only other possibility is that number IS NULL
|
||||
|
|
|
|||
Loading…
Reference in a new issue