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

Поиск
Список
Период
Сортировка
От Greg Stark
Тема pgsql: Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather
Дата
Msg-id E1ZYQN2-0006SK-Tv@gemulon.postgresql.org
обсуждение исходный текст
Список 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_1_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/07cef3eb8a621690ff5e1a1d576656284957caf1

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


В списке pgsql-committers по дате отправления:

Предыдущее
От: Greg Stark
Дата:
Сообщение: pgsql: Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather than
Следующее
От: Greg Stark
Дата:
Сообщение: pgsql: Move DTK_ISODOW DTK_DOW and DTK_DOY to be type UNITS rather than