]> granicus.if.org Git - postgresql/commit
Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather than
authorGreg Stark <stark@mit.edu>
Sun, 6 Sep 2015 01:04:37 +0000 (02:04 +0100)
committerGreg Stark <stark@mit.edu>
Sun, 6 Sep 2015 02:58:32 +0000 (03:58 +0100)
commitf4afbe0653022b4689e0732e308810373f6d1c46
treebc4809ac3a8346e6cffd4cf7d3e0bb9b6892e8d3
parent68f4b68e4e94d93941be54000c7f3dd8e11f9dee
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
src/backend/utils/adt/datetime.c
src/backend/utils/adt/timestamp.c