BUG #4362: Casts from base types to composite types don't work. - Mailing list pgsql-bugs

From Andrej Podzimek
Subject BUG #4362: Casts from base types to composite types don't work.
Date
Msg-id 200808170209.m7H29Zf3008783@wwwmaster.postgresql.org
Whole thread Raw
Responses Re: BUG #4362: Casts from base types to composite types don't work.
List pgsql-bugs
The following bug has been logged online:

Bug reference:      4362
Logged by:          Andrej Podzimek
Email address:      andrej@podzimek.org
PostgreSQL version: 8.3
Operating system:   Linux
Description:        Casts from base types to composite types don't work.
Details:

CREATE TYPE pxgt_xid AS (xid bigint, xname text);

CREATE FUNCTION pxgt_xid(text) RETURNS pxgt_xid AS
$BODY$ select cast ( null as bigint ), $1; $BODY$
LANGUAGE 'sql' IMMUTABLE;

CREATE CAST (text AS pxgt_xid) WITH FUNCTION pxgt_xid(bigint) AS IMPLICIT;

select cast (text 'blabla' as pxgt_xid);
ERROR:  malformed record literal: "blabla"
DETAIL:  Missing left parenthesis.

When I create a similar cast for bigint->pxgt_xid, it seems to work. But in
fact an implicit cast works here, not the defined one... So as long as the
first field is a bigint, a default cast is used and the second field is just
set to null automatically. So implicit casts bigint->pxgt_xid and
(bigint)->pxgt_xid (with bigint in a simple record) work fine. But the cast
defined above is simply ignored.

AFAIK, the documentation does not mention that casts between base and
composite types are discouraged, prohibited or impossible.

Theoretically, it should be possible to create a function that accepts the
type pxgt_xid, which contains either a text or a numeric identifier. By
adding just one "is null" condition, one could have the code for both
identifier types in one function, without function overloading. That would
be great ... if the implicit cast above worked.

pgsql-bugs by date:

Previous
From: "Hiroshi Saito"
Date:
Subject: Re: BUG #4361: ODBC Driver 08030200 Hangs Excel
Next
From: Tom Lane
Date:
Subject: Re: BUG #4362: Casts from base types to composite types don't work.