mirror of https://github.com/postgres/postgres
Avoid integer overflow when LIMIT + OFFSET >= 2^63.
This fixes bug #6139 reported by Hitoshi Harada.
This commit is contained in:
parent
76f7ad14b2
commit
d525555768
|
@ -125,7 +125,7 @@ ExecLimit(LimitState *node)
|
|||
* the state machine state to record having done so.
|
||||
*/
|
||||
if (!node->noCount &&
|
||||
node->position >= node->offset + node->count)
|
||||
node->position - node->offset >= node->count)
|
||||
{
|
||||
node->lstate = LIMIT_WINDOWEND;
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue