On Wed, 26 Jun 2024 at 11:05, James Coleman <jtc...@gmail.com> wrote: > Hmm, I guess I'd never considered anything besides cases like > nextval() and now(), but I see now that now() must also be special > cased (when quoted) since 'date_trunc(day, now())'::timestamp doesn't > work but 'now()'::timestamp does.
'now()'::timestamp only works because we ignore trailing punctuation in ParseDateTime() during timestamp_in(). 'now!!'::timestamp works equally as well. David