Re: [HACKERS] postgres/alpha problems
Thomas Lockhart <lockhart@alumni.caltech.edu>
From: "Thomas G. Lockhart" <lockhart@alumni.caltech.edu>
To: Brett McCormick <brett@work.chicken.org>
Cc: pgsql-hackers@hub.org
Date: 1998-03-10T05:18:21Z
Lists: pgsql-hackers
> also, cast (var to type) is the same as type(var)? weird! why
> doesn't it just call the output/input functions (I can't cast name to
> text or vice-versa for comparisons)..
If there is an explicit conversion routine available, it might be/should
be faster and more correct than converting to and from strings. The last
resort fallback could be the string strategy. I'd like to work on the
type conversion problem for v6.4...
- Tom