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.