From b538b72eeb7ce4a84077e18374587e3a8a0d7a14 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 10 Nov 2009 14:22:45 +0000 Subject: [PATCH] DIAGNOSTICS/FOUND wording Update wording of GET DIAGNOSTICS/FOUND, per David Fetter. --- doc/src/sgml/plpgsql.sgml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 51cdf7ccc3..7255804146 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1,4 +1,4 @@ - + <application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language @@ -1365,9 +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. FOUND is not - affected by EXECUTE, while GET - DIAGNOSTICS is effected. + affect only the current function. EXECUTE + changes the output of GET DIAGNOSTICS, but + does not change the state of FOUND.