Re: [PATCHES] to_date() validation

From: "Alex Hunsaker" <badalex(at)gmail(dot)com>
To: "Brendan Jurd" <direvus(at)gmail(dot)com>
Cc: "Martijn van Oosterhout" <kleptog(at)svana(dot)org>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: [PATCHES] to_date() validation
Date: 2008-09-10 01:41:40
Message-ID: 34d269d40809091841r34bad6f3sf06ba7a145433ad6@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches

On Tue, Sep 9, 2008 at 6:46 AM, Brendan Jurd <direvus(at)gmail(dot)com> wrote:
> On Tue, Sep 9, 2008 at 9:04 PM, Brendan Jurd <direvus(at)gmail(dot)com> wrote:
>> On Tue, Sep 9, 2008 at 7:29 PM, Martijn van Oosterhout
>> <kleptog(at)svana(dot)org> wrote:
>>> The use of palloc/pfree in this routine seems excessive. Does len have
>>> upper bound? If so a simple array will do it.
>>>
>>

Good catch Martijn!

>> I suppose I could define a constant FORMATNODE_MAX_LEN, make it
>> something like 10 and just use that for copying the string, rather
>> than palloc(). I'll give it a try.
>>
>
> Turns out there was already a relevant constant defined in
> formatting.c: DCH_MAX_ITEM_SIZ, set to 9. So I just used that, +1 for
> the trailing null.

Cool.

>>>
>>> Here you do not note if we didn't convert the entire string. So it
>>> seems you are allowed to provide too few characters, as long as it's
>>> not the last field?
>>
>> That's true. The only way to hit that condition would be to provide a
>> semi-bogus value in a string with no separators between the numbers.
>
> I've now plugged this hole. I added the following error for
> fixed-width inputs that are too short:
>
> postgres=# SELECT to_date('200%1010', 'YYYYMMDD');
> ERROR: invalid value for "YYYY" in source string
> DETAIL: Field requires 4 characters, but only 3 could be parsed.
> HINT: If your source string is not fixed-width, try using the "FM" modifier.

I think thats a big improvement.

> I've attached a new version of the patch (version 3), as well as an
> incremental patch to show the differences between versions 2 and 3.

I looked it over, looks good to me!

> Cheers,
> BJ
>

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2008-09-10 01:46:57 Re: Potential Join Performance Issue
Previous Message Tom Lane 2008-09-10 01:28:40 Re: pg_regress inputdir

Browse pgsql-patches by date

  From Date Subject
Next Message Alex Hunsaker 2008-09-10 02:45:10 Re: hash index improving v3
Previous Message Alex Hunsaker 2008-09-10 01:27:14 Re: [PATCHES] to_date() validation