projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8123d8f
)
More keyword uppercasing.
author
Bruce Momjian
Sat, 13 Oct 2001 04:58:35 +0000
(
04:58
+0000)
committer
Bruce Momjian
Sat, 13 Oct 2001 04:58:35 +0000
(
04:58
+0000)
doc/src/sgml/plsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plsql.sgml
b/doc/src/sgml/plsql.sgml
index 4375734234cb791afed24a373eddf73286156b7e..7eb824cbb1ee4bccb85d9fb3ba80ce84dea6ab0f 100644
(file)
--- a/
doc/src/sgml/plsql.sgml
+++ b/
doc/src/sgml/plsql.sgml
@@
-1,5
+1,5
@@
@@
-232,7
+232,7
@@
DROP FUNCTION testfunc(integer);
CREATE FUNCTION testfunc(INTEGER) RETURNS INTEGER AS '
....
end;
-'
language
'plpgsql';
+'
LANGUAGE
'plpgsql';
@@
-1312,7
+1312,7
@@
BEGIN
PERFORM cs_log(''Done refreshing materialized views.'');
RETURN 1;
end;
-'
language
'plpgsql';
+'
LANGUAGE
'plpgsql';
If the loop is terminated with an EXIT statement, the last
@@
-2530,7
+2530,7
@@
BEGIN
RETURN 0;
END IF;
END;
-'
language
'plpgsql';
+'
LANGUAGE
'plpgsql';
--
-- Written by Robert Gaszewski (
[email protected]
)