From: | Tom Lane <tgl(at)hub(dot)org> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql/src/backend/executor nodeAppend.c nodeSu ... |
Date: | 2001-05-08 19:47:02 |
Message-ID: | 200105081947.f48Jl2g47331@hub.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
CVSROOT: /home/projects/pgsql/cvsroot
Module name: pgsql
Changes by: tgl(at)hub(dot)org 01/05/08 15:47:02
Modified files:
src/backend/executor: nodeAppend.c nodeSubqueryscan.c
Log message:
Append and SubqueryScan nodes were not passing changed-parameter signals down
to their children, leading to misbehavior if they had any children that paid
attention to chgParam (most plan node types don't). Append's bug has been
there a long time, but nobody had noticed because it used to be difficult
to create a query where an Append would be used below the top level of a
plan; so there were never any parameters getting passed down. SubqueryScan
is new in 7.1 ... and I'd modeled its behavior on Append :-(
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2001-05-08 19:48:02 | pgsql/src/backend/executor Tag: REL7_1_STABLE ... |
Previous Message | Peter Eisentraut - PostgreSQL | 2001-05-08 19:38:57 | pgsql/src/backend/port Makefile.in |