From: | Joseph Koshakow <koshy44(at)gmail(dot)com> |
---|---|
To: | David Rowley <dgrowleyml(at)gmail(dot)com> |
Cc: | PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: Fix overflow in pg_size_pretty |
Date: | 2024-07-28 01:10:23 |
Message-ID: | CAAvxfHcq=7NiUBgdGD1DeZcG0tVVxbpq8n20MbrWj=1k3NE8mw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Sat, Jul 27, 2024 at 8:00 PM David Rowley <dgrowleyml(at)gmail(dot)com> wrote:
>
> On Sun, 28 Jul 2024 at 11:06, Joseph Koshakow <koshy44(at)gmail(dot)com> wrote:
>> > + uint64 usize = size < 0 ? (uint64) (-size) : (uint64) size;
>>
>> I think that the explicit test for PG_INT64_MIN is still required. If
>> `size` is equal to PG_INT64_MIN then `-size` will overflow. You end up
>> with the correct behavior if `size` wraps around, but that's only
>> guaranteed on platforms that support the `-fwrapv` flag.
>
> What if we spelt it out the same way as pg_lltoa() does?
>
> i.e: uint64 usize = size < 0 ? 0 - (uint64) size : (uint64) size;
My understanding of pg_lltoa() is that it produces an underflow and
relies wrapping around from 0 to PG_UINT64_MAX. In fact the following
SQL, which relies on pg_lltoa() under the hood, panics with `-ftrapv`
enabled (which panics on underflows and overflows):
SELECT int8out(-9223372036854775808);
So we should actually probably modify pg_lltoa() to use pg_abs_s64()
too.
Thanks,
Joe Koshakow
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Munro | 2024-07-28 01:19:38 | Re: why is pg_upgrade's regression run so slow? |
Previous Message | Corey Huinker | 2024-07-28 01:08:44 | Re: Statistics Import and Export |