]> granicus.if.org Git - postgresql/commitdiff
Have PL/pgSQL FETCH set DIAGNOSTICS ROW_COUNT.
authorBruce Momjian <bruce@momjian.us>
Thu, 2 Apr 2009 19:20:45 +0000 (19:20 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 2 Apr 2009 19:20:45 +0000 (19:20 +0000)
Andrew Gierth

doc/src/sgml/plpgsql.sgml
src/pl/plpgsql/src/pl_exec.c

index db6d08fd69f273aeeb640a31dad86ebe056412c3..6eb9b2b9e7af187aa4dc537c99b13db9866bc7ca 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.138 2009/02/05 15:25:49 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.139 2009/04/02 19:20:45 momjian Exp $ -->
 
 <chapter id="plpgsql">
   <title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title>
@@ -1285,7 +1285,7 @@ GET DIAGNOSTICS <replaceable>variable</replaceable> = <replaceable>item</replace
      value to be assigned to the specified variable (which should be
      of the right data type to receive it).  The currently available
      status items are <varname>ROW_COUNT</>, the number of rows
-     processed by the last <acronym>SQL</acronym> command sent down to
+     processed by the last <acronym>SQL</acronym> command sent to
      the <acronym>SQL</acronym> engine, and <varname>RESULT_OID</>,
      the OID of the last row inserted by the most recent
      <acronym>SQL</acronym> command.  Note that <varname>RESULT_OID</>
index c6658fca357ea98ef1beec4f61d6de0418240e84..588c2fe63b0d50498d9493048276cd4fa68f7138 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.237 2009/04/02 01:16:11 tgl Exp $
+ *       $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.238 2009/04/02 19:20:45 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -3368,6 +3368,8 @@ exec_stmt_fetch(PLpgSQL_execstate *estate, PLpgSQL_stmt_fetch *stmt)
                exec_set_found(estate, n != 0);
        }
 
+       estate->eval_processed = n;
+
        return PLPGSQL_RC_OK;
 }