Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather than

Greg Stark <stark@mit.edu>

Commit: b17ce6208363470d753503f9430d21ecc898cc79
Author: Greg Stark <stark@mit.edu>
Date: 2015-09-06T02:56:59Z
Releases: 9.4.5
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

Files

PathChange+/−
src/backend/utils/adt/datetime.c modified +3 −3
src/backend/utils/adt/timestamp.c modified +40 −40