CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: [email protected] 03/03/24 22:16:41
Modified files:
src/pl/plpgsql/src: gram.y pl_exec.c pl_funcs.c plpgsql.h
Log message:
plpgsql can assign to subscripted variables now, e.g.
x[42] := whatever;
The facility is pretty primitive because it doesn't do array slicing and
it has the same semantics as array update in SQL (array must already
be non-null, etc). But it's a start.