]> git.ipfire.org Git - thirdparty/postgresql.git/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 03:05:46 +0000 (04:05 +0100)
commitc11100d0fa46b5a0c3c796b8d538060ce7d14ac9
tree6a2c08bf0880053846f5b599e343b86c19ec7822
parent5692b4acb26fea7c834c9ad0712cce2ec251d512
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