We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1a391c commit 52065cfCopy full SHA for 52065cf
src/pl/plpgsql/src/pl_exec.c
@@ -3,7 +3,7 @@
3
* procedural language
4
*
5
* IDENTIFICATION
6
- * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.4 1998/10/04 15:38:57 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.5 1999/01/17 21:53:32 tgl Exp $
7
8
* This software is copyrighted by Jan Wieck - Hamburg.
9
@@ -1243,9 +1243,9 @@ exec_stmt_fori(PLpgSQL_execstate * estate, PLpgSQL_stmt_fori * stmt)
1243
* ----------
1244
*/
1245
if (stmt->reverse)
1246
- (int4)var->value--;
+ var->value--;
1247
else
1248
- (int4)var->value++;
+ var->value++;
1249
}
1250
1251
return PLPGSQL_RC_OK;
0 commit comments