CREATE TYPE

From: "Ameen - Etemady" <eetemadi(at)ce(dot)sharif(dot)edu>
To: pgsql-sql(at)postgresql(dot)org
Subject: CREATE TYPE
Date: 2004-11-03 15:56:28
Message-ID: 34544.62.220.101.165.1099497388.squirrel@ce.sharif.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I want to create a data type that have tow arguments in the defenition,
like the varchar type:
create table mytmp(name varchar(10));

I like to do it like this:
create table mytmp(name myvarchar(10,"en_US"));

whow can it be done by "CREATE TYPE"
I want to implement the internal functions (compare, ...).
I faunded the documentation but I can't see any thing that help me to
create a type same as varchar( with argument)

Notice: I don't mean using "CREATE TYPE myvarchar AS( lenght integer,
collate char(10))

Thanks

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Jeff 2004-11-03 16:23:53 Re: CREATE TYPE
Previous Message Michael Fuhr 2004-11-03 15:33:11 Re: trigger status