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 than |
Date: | 2015-09-06 02:36:22 |
Message-ID: | E1ZYPoc-0005rk-14@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
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
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/258ee1b635e43a37e901fd5f62bdd5f1087d65a5
Modified Files
--------------
src/backend/utils/adt/datetime.c | 6 +--
src/backend/utils/adt/timestamp.c | 80 ++++++++++++++++++-------------------
2 files changed, 43 insertions(+), 43 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next 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 |
Previous Message | Tom Lane | 2015-09-05 20:16:11 | pgsql: Fix CreateTableSpace() so it will compile without HAVE_SYMLINK. |
From | Date | Subject | |
---|---|---|---|
Next Message | Noah Misch | 2015-09-06 02:44:03 | Re: pg_ctl/pg_rewind tests vs. slow AIX buildfarm members |
Previous Message | Tom Lane | 2015-09-06 02:22:59 | Re: pg_ctl/pg_rewind tests vs. slow AIX buildfarm members |