Re: txid strtoull fix

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Marko Kreen" <markokr(at)gmail(dot)com>
Cc: PostgreSQL-patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: txid strtoull fix
Date: 2007-10-08 22:09:25
Message-ID: 1741.1191881365@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

"Marko Kreen" <markokr(at)gmail(dot)com> writes:
> On 10/8/07, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>> (Note that your overflow test didn't actually work; AFAIK there
>> really isn't any decent solution other than dividing at each step.)

> Hmm. It did seem to work here. Just in case I peeked into
> FreeBSD strtoull() and this patch imitates their method.

Well, it worked for the one specific case you tested, but there are
other cases it would fail to detect overflow for. (When you're
multiplying by ten, the overflow might not be small.) The FreeBSD
way looks OK though --- applied.

regards, tom lane

In response to

Browse pgsql-patches by date

  From Date Subject
Next Message Tom Lane 2007-10-08 23:25:14 Preliminary patch for tsearch example dictionaries/parsers in contrib
Previous Message Alvaro Herrera 2007-10-08 20:53:20 Re: [HACKERS] Add function for quote_qualified_identifier?