Skip to content
Snippets Groups Projects
Commit 46712990 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

More keyword uppercasing.

parent 8123d8f1
No related branches found
No related tags found
No related merge requests found
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.44 2001/10/12 23:32:34 momjian Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.45 2001/10/13 04:58:35 momjian Exp $
--> -->
<chapter id="plpgsql"> <chapter id="plpgsql">
...@@ -232,7 +232,7 @@ DROP FUNCTION testfunc(integer); ...@@ -232,7 +232,7 @@ DROP FUNCTION testfunc(integer);
CREATE FUNCTION testfunc(INTEGER) RETURNS INTEGER AS ' CREATE FUNCTION testfunc(INTEGER) RETURNS INTEGER AS '
.... ....
end; end;
' language 'plpgsql'; ' LANGUAGE 'plpgsql';
</programlisting> </programlisting>
</para> </para>
...@@ -1312,7 +1312,7 @@ BEGIN ...@@ -1312,7 +1312,7 @@ BEGIN
PERFORM cs_log(''Done refreshing materialized views.''); PERFORM cs_log(''Done refreshing materialized views.'');
RETURN 1; RETURN 1;
end; end;
' language 'plpgsql'; ' LANGUAGE 'plpgsql';
</programlisting> </programlisting>
If the loop is terminated with an EXIT statement, the last If the loop is terminated with an EXIT statement, the last
...@@ -2530,7 +2530,7 @@ BEGIN ...@@ -2530,7 +2530,7 @@ BEGIN
RETURN 0; RETURN 0;
END IF; END IF;
END; END;
' language 'plpgsql'; ' LANGUAGE 'plpgsql';
-- --
-- Written by Robert Gaszewski (graszew@poland.com) -- Written by Robert Gaszewski (graszew@poland.com)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment