projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10bcfa1
)
PL/pgSQL FOUND
author
Bruce Momjian
Tue, 10 Nov 2009 02:09:54 +0000
(
02:09
+0000)
committer
Bruce Momjian
Tue, 10 Nov 2009 02:09:54 +0000
(
02:09
+0000)
Document that GET DIAGNOSTICS is affected by EXECUTE, while FOUND is
not.
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index 401d1216e4f0f56988cdd4104e6642aca4cb5d3b..51cdf7ccc3dd127e435b7cd4bb7b502251434dea 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1,4
+1,4
@@
-
+
PL/pgSQL
-
SQL
Procedural Language
@@
-1365,7
+1365,9
@@
GET DIAGNOSTICS integer_var = ROW_COUNT;
FOUND
is a local variable within each
PL/pgSQL
function; any changes to it
- affect only the current function.
+ affect only the current function.
FOUND
is not
+ affected by
EXECUTE
, while
GET
+ DIAGNOSTICS is effected.