Thread: pgsql-server/src backend/parser/parse_coerce.c ...

pgsql-server/src backend/parser/parse_coerce.c ...

From
tgl@postgresql.org (Tom Lane)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@postgresql.org    02/10/24 18:09:00

Modified files:
    src/backend/parser: parse_coerce.c parse_func.c
    src/include/parser: parse_coerce.h

Log message:
    Function-call-style type coercions should be treated as explicit
    coercions, not implicit ones.  For example, 'select abstime(1035497293)'
    should succeed because there is an explicit binary coercion from int4
    to abstime.