diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-03-14 17:07:01 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-03-14 17:07:11 -0400 |
commit | 5ff683962ef9a953eeb17ea58d678f0c4ca189ae (patch) | |
tree | 4b624c53364563f98ad60710eb4b77c219441ccf /src | |
parent | 959df4b5fc81397ddc8926d6b756dc044310fa34 (diff) | |
download | postgresql-5ff683962ef9a953eeb17ea58d678f0c4ca189ae.tar.gz postgresql-5ff683962ef9a953eeb17ea58d678f0c4ca189ae.zip |
Remove obsolete comment.
Obsoleted by commit 21dcda2713656a7483e3280ac9d2ada20a87a9a9, but I missed
seeing the cross-reference in the comments for exec_eval_integer().
Also improve the cross-reference in the comments for exec_eval_cleanup().
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpgsql/src/pl_exec.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index 0ad32f72e9a..e332fa07273 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -3219,7 +3219,7 @@ plpgsql_estate_setup(PLpgSQL_execstate *estate, * unless it is a pass-by-value datatype. * * NB: if you change this code, see also the hacks in exec_assign_value's - * PLPGSQL_DTYPE_ARRAYELEM case. + * PLPGSQL_DTYPE_ARRAYELEM case for partial cleanup after subscript evals. * ---------- */ static void @@ -4749,8 +4749,7 @@ exec_get_datum_type_info(PLpgSQL_execstate *estate, * Note we do not do exec_eval_cleanup here; the caller must do it at * some later point. (We do this because the caller may be holding the * results of other, pass-by-reference, expression evaluations, such as - * an array value to be subscripted. Also see notes in exec_eval_simple_expr - * about allocation of the parameter array.) + * an array value to be subscripted.) * ---------- */ static int |