Re: BUG #15336: Wrong cursor's bacward fetch results in select with ALL(subquery)
Andrew Gierth <andrew@tao11.riddles.org.uk>
From: Andrew Gierth <andrew@tao11.riddles.org.uk>
To: pgsql-bugs@lists.postgresql.org, v.g.baranoff@gmail.com
Date: 2018-08-17T10:27:46Z
Lists: pgsql-bugs
>>>>> "PG" == PG Bug reporting form <noreply@postgresql.org> writes: PG> fetch backward 9 from "mycursor"; PG> commit; PG> The result set is wrong (9, 8, 7, 6, 5, 4, 3, 2, 1). PG> It seems that selection predicate is ignored. PG> This bug has been reproduced with PostgreSQL 9.6 and 10.0 I wonder if we have a contender here for the oldest reported bug in PG history; while I haven't tested anything older than 9.5, the incorrect logic seems to date back to the introduction of subqueries in 6.something. Here is a simpler test case: begin; declare foo cursor for select * from generate_series(1,3) i where i <> all (values (2)); fetch all from foo; -- returns the expected 2 rows fetch backward all from foo; -- assertion failure, or incorrect result The problem is that the scan direction is being set to "backward" in the EState, and as a result the subquery evaluation is run in the backward direction too, which obviously doesn't do anything sensible. The assertion failure is from the tuplestore code complaining about doing a backward fetch on a tuplestore not initialized for backward access. I'm really not sure yet what the correct fix is, though. -- Andrew (irc:RhodiumToad)
Commits
-
Set scan direction appropriately for SubPlans (bug #15336)
- 807c1c555064 9.3.25 landed
- 3cf3a65cb7da 9.4.20 landed
- d2ecc27c374a 9.5.15 landed
- 6302fe6b28e2 9.6.11 landed
- d31ebbff5b2b 10.6 landed
- 67b161eae32b 11.0 landed
- 520acab17124 12.0 landed
-
Get rid of the separate EState for subplans, and just let them share the
- c7ff7663e47f 8.3.0 cited