Re: Date-Time dangling unit fix - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Date-Time dangling unit fix
Date
Msg-id 2996004.1677963933@sss.pgh.pa.us
Whole thread Raw
In response to Re: Date-Time dangling unit fix  (Joseph Koshakow <koshy44@gmail.com>)
Responses Re: Date-Time dangling unit fix  (Joseph Koshakow <koshy44@gmail.com>)
Re: Date-Time dangling unit fix  (Peter Eisentraut <peter.eisentraut@enterprisedb.com>)
List pgsql-hackers
Joseph Koshakow <koshy44@gmail.com> writes:
> On Mon, Dec 12, 2022 at 10:55 AM Joseph Koshakow <koshy44@gmail.com> wrote:
>> I just found another class of this bug that the submitted patch does
>> not fix. If the units are at the beginning of the string, then they are
>> also ignored. For example, `date 'm d y2020m11d3'` is also valid. I
>> think the fix here is to check and make sure that ptype is 0 before
>> reassigning the value to a non-zero number. I'll send an updated patch
>> with this tonight.

> Attached is the described patch.

I started to look at this, and soon noticed that while we have test cases
matching this sort of date input, there is no documentation for it.  The
code claims it's an "ISO" (presumably ISO 8601) format, and maybe it is
because it looks a lot like the ISO 8601 format for intervals (durations).
But I don't have a copy of ISO 8601, and some googling fails to find any
indication that anybody else believes this is a valid datetime format.
Wikipedia for example documents a lot of variants of ISO 8601 [1],
but nothing that looks like this.

I wonder if we should just rip this code out instead of fixing it.
I suspect its real-world usage is not different from zero.  We'd
have to keep the "Jnnn" Julian-date case, though, so maybe there's
little to be saved.

If we do keep it, there's documentation work to be done.  But the
first bit of doco I'd want to see is a pointer to a standard.

            regards, tom lane

[1] https://en.wikipedia.org/wiki/ISO_8601



pgsql-hackers by date:

Previous
From: Joseph Koshakow
Date:
Subject: Re: Date-time extraneous fields with reserved keywords
Next
From: Dave Cramer
Date:
Subject: Re: Request for comment on setting binary format output per session