On Fri, Dec 14, 2012 at 9:16 AM, joshua <jzuellig@xxxxxxxxxxxxxxx> wrote: > I'm trying to create an implicit cast from an unknown type into a text array > type by creating a simple array of size 1. e.g. > > create function textarray(unknown) > returns text[] > as 'select ARRAY[$1::text];' > language sql > immutable; > > create cast (unknown as text[]) with function textarray(unknown) as > implicit; > > However, when I try to use this, the planner doesn't use the implicit cast. > Instead it still tries to cast 'a' directly to a text[] and complains that > it's not formatted as '{a}' (ERROR: array value must start with "{" or > dimension information) > I added an additional parallel cast from text to text[]: create function textarray(anyelement) returns text[] as 'select ARRAY[$1::text];' language sql immutable; (emphasis on 'anyelement')...get rid of the cast. use 'any' type arguments for polymorphic functions, that is when you want them to operate over wide range of input types. hacking casts is almost never a good idea. merlin -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general