Fix nodeTidscan.c to not trigger an error if the block number portion of
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 30 Apr 2008 23:28:37 +0000 (23:28 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 30 Apr 2008 23:28:37 +0000 (23:28 +0000)
commit90a6e316488a3fac313784a978f0043ab543c937
treee3b3c6f7b76dba55b6f938f6bdc1a5bfaf796795
parent5f357f6900ee71ae9b7fb0b25e1ab393b0ae72f1
Fix nodeTidscan.c to not trigger an error if the block number portion of
a user-supplied TID is out of range for the relation.  This is needed to
preserve compatibility with our pre-8.3 behavior, and it is sensible anyway
since if the query were implemented by brute force rather than optimized
into a TidScan, the behavior for a non-existent TID would be zero rows out,
never an error.  Per gripe from Gurjeet Singh.
src/backend/executor/nodeTidscan.c