is there an immutable function to switch from date to character?

Поиск
Список
Период
Сортировка
От Celia McInnis
Тема is there an immutable function to switch from date to character?
Дата
Msg-id CAGD6t7+GykxBs=BVeg2un_rQOrjXz==pXt-UWFVTNCgeYCSB5A@mail.gmail.com
обсуждение исходный текст
Ответы Re: is there an immutable function to switch from date to character?  (Steve Baldwin <steve.baldwin@gmail.com>)
Re: is there an immutable function to switch from date to character?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
create temporary table junk as select now()::date as evtdate;

alter table junk add column chardate text GENERATED ALWAYS AS (to_char(evtdate,'YYYY-Mon-DD')) STORED;

ERROR:  generation expression is not immutable

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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Backup_Long Running
Следующее
От: Steve Baldwin
Дата:
Сообщение: Re: is there an immutable function to switch from date to character?