BUG #4362: Casts from base types to composite types don't work.

From: "Andrej Podzimek" <andrej(at)podzimek(dot)org>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #4362: Casts from base types to composite types don't work.
Date: 2008-08-17 02:09:35
Message-ID: 200808170209.m7H29Zf3008783@wwwmaster.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 4362
Logged by: Andrej Podzimek
Email address: andrej(at)podzimek(dot)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.

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Hiroshi Saito 2008-08-17 02:44:55 Re: BUG #4361: ODBC Driver 08030200 Hangs Excel
Previous Message Jim Dornfeld 2008-08-16 20:23:02 BUG #4361: ODBC Driver 08030200 Hangs Excel