Обсуждение: What does this mean?

Поиск
Список
Период
Сортировка

What does this mean?

От
"Jackson, DeJuan"
Дата:
    ERROR:  internal error: untrusted function not supported.
What does it mean and how do I fix it?

I'm trying to create a lower function to work with varchar ( I would
guess this would fall in with type coercion, Tom?).  



Re: [HACKERS] What does this mean?

От
"Thomas G. Lockhart"
Дата:
> ERROR:  internal error: untrusted function not supported.
> What does it mean and how do I fix it?
> I'm trying to create a lower function to work with varchar ( I would
> guess this would fall in with type coercion, Tom?).

>From the current development tree:

postgres=> select lower('ABCD'::varchar);
lower
-----
abcd
(1 row)

It's been a while since I've run across that message. Do you want to
send me your code?
                       - Tom