pgsql: Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather

From: Greg Stark <stark(at)mit(dot)edu>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather
Date: 2015-09-06 03:11:36
Message-ID: E1ZYQMi-0006R7-6H@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather than
RESERV. RESERV is meant for tokens like "now" and having them in that
category throws errors like these when used as an input date:

stark=# SELECT 'doy'::timestamptz;
ERROR: unexpected dtype 33 while parsing timestamptz "doy"
LINE 1: SELECT 'doy'::timestamptz;
^
stark=# SELECT 'dow'::timestamptz;
ERROR: unexpected dtype 32 while parsing timestamptz "dow"
LINE 1: SELECT 'dow'::timestamptz;
^

Found by LLVM's Libfuzzer

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/530d0c504fe636b0ed4a3817b1e9806dd55a52b6

Modified Files
--------------
src/backend/utils/adt/datetime.c | 6 +--
src/backend/utils/adt/timestamp.c | 79 +++++++++++++++++++------------------
2 files changed, 43 insertions(+), 42 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Greg Stark 2015-09-06 03:11:56 pgsql: Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather than
Previous Message Tom Lane 2015-09-06 03:02:31 Re: pgsql: Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather than