Re: Fix overflow in justify_interval related functions
Joseph Koshakow <koshy44@gmail.com>
From: Joseph Koshakow <koshy44@gmail.com>
To: Nathan Bossart <nathandbossart@gmail.com>
Cc: Tom Lane <tgl@sss.pgh.pa.us>, pgsql-hackers@lists.postgresql.org
Date: 2022-02-15T01:35:43Z
Lists: pgsql-hackers
Attachments
- v3-0001-Check-for-overflow-in-justify_interval-functions.patch (text/x-patch) patch v3-0001
On Mon, Feb 14, 2022 at 7:59 PM Nathan Bossart <nathandbossart@gmail.com> wrote: > I think it's possible to avoid overflow in justify_interval() in some cases > by pre-justifying the days. I've attached a patch to demonstrate. > > -- > Nathan Bossart > Amazon Web Services: https://aws.amazon.com Good catch, I didn't think about that. Though if you are pre-justifying the days, then I don't think it's possible for the second addition to days to overflow. The maximum amount the days field could be after the first justification is 29. I think we can simplify it further to the attached patch. - Joe
Commits
-
Handle integer overflow in interval justification functions.
- 54bd1e43ca56 15.0 landed