| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | darcy(at)druid(dot)net (D'Arcy J(dot)M(dot) Cain) |
| Cc: | pgsql-sql(at)postgresql(dot)org |
| Subject: | Re: Using substr with user defined types |
| Date: | 2000-05-18 02:52:35 |
| Message-ID: | 21185.958618355@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
darcy(at)druid(dot)net (D'Arcy J.M. Cain) writes:
> I created a type (for passwords) but I can't seem to use substr. I
> suppose that's because it is my own type because the errors suggest that
> there is no substr (actually it says ltrim) function for that type.
Yup --- the system has no idea how to apply any functions to a
user-defined type except the ones you specifically define for that type.
If you make a type-conversion function "text(yourtype) returns text"
then the system will figure out that it should apply that function
whenever you use your type as the argument of a function that needs
text. But without such a function, the system will not assume that
it can do anything text-ish with the datatype.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2000-05-18 03:18:54 | Re: pg_dump return failed sanity check |
| Previous Message | Daniel Mendyke | 2000-05-18 00:52:48 | Automatic index numbers |