-
+
PL/pgSQL - SQL Procedural Language
<<label>>
-FOR name IN REVERSE expression .. expression LOOP
+FOR name IN REVERSE expression .. expression BY expression LOOP
statements
END LOOP label ;
definition of the variable name is ignored within the loop).
The two expressions giving
the lower and upper bound of the range are evaluated once when entering
- the loop. The iteration step is normally 1, but is -1 when REVERSE> is
- specified.
+ the loop. If the BY> clause isn't specified the iteration
+ step is 1 otherwise it's the value specified in the BY>
+ clause. If REVERSE> is specified then the step value is
+ considered negative.
FOR i IN REVERSE 10..1 LOOP
-- some computations here
END LOOP;
+
+FOR i IN REVERSE 10..1 BY 2 LOOP
+ -- some computations here
+ RAISE NOTICE 'i is %', i;
+END LOOP;
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.90 2006/05/27 19:45:52 tgl Exp $
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.91 2006/06/12 16:45:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
%token K_ALIAS
%token K_ASSIGN
%token K_BEGIN
+%token K_BY
%token K_CLOSE
%token K_CONSTANT
%token K_CONTINUE
{
/* Saw "..", so it must be an integer loop */
PLpgSQL_expr *expr2;
+ PLpgSQL_expr *expr_by;
PLpgSQL_var *fvar;
PLpgSQL_stmt_fori *new;
char *varname;
/* First expression is well-formed */
check_sql_expr(expr1->query);
- expr2 = plpgsql_read_expression(K_LOOP, "LOOP");
+
+ expr2 = read_sql_construct(K_BY,
+ K_LOOP,
+ "LOOP",
+ "SELECT ",
+ true,
+ false,
+ &tok);
+
+ if (tok == K_BY)
+ expr_by = plpgsql_read_expression(K_LOOP, "LOOP");
+ else
+ {
+ /*
+ * If there is no BY clause we will assume 1
+ */
+ char buf[1024];
+ PLpgSQL_dstring ds;
+
+ plpgsql_dstring_init(&ds);
+
+ expr_by = palloc0(sizeof(PLpgSQL_expr));
+ expr_by->dtype = PLPGSQL_DTYPE_EXPR;
+ strcpy(buf, "SELECT 1");
+ plpgsql_dstring_append(&ds, buf);
+ expr_by->query = pstrdup(plpgsql_dstring_get(&ds));
+ expr_by->plan = NULL;
+ }
/* should have had a single variable name */
plpgsql_error_lineno = $2.lineno;
new->reverse = reverse;
new->lower = expr1;
new->upper = expr2;
+ new->by = expr_by;
$$ = (PLpgSQL_stmt *) new;
}
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.169 2006/05/30 13:40:55 momjian Exp $
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.170 2006/06/12 16:45:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
/* ----------
* exec_stmt_fori Iterate an integer variable
- * from a lower to an upper value.
+ * from a lower to an upper value
+ * incrementing or decrementing in BY value
* Loop can be left with exit.
* ----------
*/
{
PLpgSQL_var *var;
Datum value;
+ Datum by_value;
Oid valtype;
bool isnull;
bool found = false;
errmsg("upper bound of FOR loop cannot be NULL")));
exec_eval_cleanup(estate);
+ /*
+ * Get the by value
+ */
+ by_value = exec_eval_expr(estate, stmt->by, &isnull, &valtype);
+ by_value = exec_cast_value(by_value, valtype, var->datatype->typoid,
+ &(var->datatype->typinput),
+ var->datatype->typioparam,
+ var->datatype->atttypmod, isnull);
+
+ if (isnull)
+ ereport(ERROR,
+ (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
+ errmsg("by value of FOR loop cannot be NULL")));
+ exec_eval_cleanup(estate);
+
/*
* Now do the loop
*/
* Increase/decrease loop var
*/
if (stmt->reverse)
- var->value--;
+ var->value -= by_value;
else
- var->value++;
+ var->value += by_value;
}
/*
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.52 2006/05/30 13:40:55 momjian Exp $
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.53 2006/06/12 16:45:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
printf(" upper = ");
dump_expr(stmt->upper);
printf("\n");
+ dump_ind();
+ printf(" by = ");
+ dump_expr(stmt->by);
+ printf("\n");
dump_indent -= 2;
dump_stmts(stmt->body);
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.74 2006/05/30 13:40:55 momjian Exp $
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.75 2006/06/12 16:45:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
PLpgSQL_var *var;
PLpgSQL_expr *lower;
PLpgSQL_expr *upper;
+ PLpgSQL_expr *by;
int reverse;
List *body; /* List of statements */
} PLpgSQL_stmt_fori;
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.49 2006/05/30 13:40:55 momjian Exp $
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.50 2006/06/12 16:45:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
\.\. { return K_DOTDOT; }
alias { return K_ALIAS; }
begin { return K_BEGIN; }
+by { return K_BY; }
close { return K_CLOSE; }
constant { return K_CONSTANT; }
continue { return K_CONTINUE; }