mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-14 10:27:04 +08:00
Fix parameter recalculation for Limit nodes: during a ReScan call we must
recompute the limit/offset immediately, so that the updated values are available when the child's ReScan function is invoked. Add a regression test for this, too. Bug is new in HEAD (due to the bounded-sorting patch) so no need for back-patch. I did not do anything about merging this signaling with chgParam processing, but if we were to do that we'd still need to compute the updated values at this point rather than during the first ProcNode call. Per observation and test case from Greg Stark, though I didn't use his patch.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.173 2007/05/04 01:13:45 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.174 2007/05/17 19:35:08 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1416,6 +1416,7 @@ typedef struct SetOpState
|
||||
typedef enum
|
||||
{
|
||||
LIMIT_INITIAL, /* initial state for LIMIT node */
|
||||
LIMIT_RESCAN, /* rescan after recomputing parameters */
|
||||
LIMIT_EMPTY, /* there are no returnable rows */
|
||||
LIMIT_INWINDOW, /* have returned a row in the window */
|
||||
LIMIT_SUBPLANEOF, /* at EOF of subplan (within window) */
|
||||
|
||||
Reference in New Issue
Block a user