Why is DATESTYLE, ordering ignored for output but used for input ?

Поиск
Список
Период
Сортировка
От Dave Cramer
Тема Why is DATESTYLE, ordering ignored for output but used for input ?
Дата
Msg-id CADK3HH+Ev=ZM-mru1gRRBHy+ur54NcuFZNa_bHRgtUJP82YoGA@mail.gmail.com
обсуждение исходный текст
Ответы Re: Why is DATESTYLE, ordering ignored for output but used for input ?  (Matthias van de Meent <boekewurm+postgres@gmail.com>)
Список pgsql-hackers
Greetings,

For ISO and German dates the order DMY is completely ignored on output but used for input.

test=# set datestyle to 'ISO,DMY';
SET
select '7-8-2023'::date
test-# ;
    date
------------
 2023-08-07
(1 row)

test=# set datestyle to 'ISO,MDY';
SET
test=# select '7-8-2023'::date
;
    date
------------
 2023-07-08
(1 row)

Note regardless of  how the ordering is specified it is always output as 
YMD

Dave Cramer

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

Предыдущее
От: "Tristan Partin"
Дата:
Сообщение: Re: Optionally using a better backtrace library?
Следующее
От: Nathan Bossart
Дата:
Сообщение: Re: pgsql: Fix search_path to a safe value during maintenance operations.