Re: inserting values into types - Mailing list pgsql-sql

From Michael Fuhr
Subject Re: inserting values into types
Date
Msg-id 20041206040324.GA48287@winnie.fuhr.org
Whole thread Raw
In response to Re: inserting values into types  (Yasir Malik <ymalik@cs.stevens-tech.edu>)
List pgsql-sql
On Sat, Dec 04, 2004 at 11:13:29PM -0500, Yasir Malik wrote:
> >>CREATE TYPE qwerty_UDT AS (abc INT);
> >>
> >>CREATE TABLE t (col1 qwerty_UDT);
> >>
> >>INSERT INTO t (col1) VALUES (qwerty_UDT(123));
> >>
> >>ERROR:  function qwerty_udt(integer) does not exist
> >>HINT:  No function matches the given name and argument types. You may 
> >>need to add explicit type casts.
> 
> It seems as though you want to create your own user-defined types.  That 
> isn't easy in PostgreSQL.

That the CREATE TABLE statement succeeded implies that he's using
PostgreSQL 8.0, which has better support for composite types than
previous versions.  What he's trying to do will work -- he just has
the syntax wrong.

http://developer.postgresql.org/docs/postgres/rowtypes.html

-- 
Michael Fuhr
http://www.fuhr.org/~mfuhr/


pgsql-sql by date:

Previous
From: Yasir Malik
Date:
Subject: Re: inserting values into types
Next
From: pgsql-sql@vankoperen.nl
Date:
Subject: Making dirty reads possible?