PostgreSQL 9.0.3 cannot choose the best candidate function with type casts

Поиск
Список
Период
Сортировка
От
Тема PostgreSQL 9.0.3 cannot choose the best candidate function with type casts
Дата
Msg-id 20110404110629.61634073@centrum.sk
обсуждение исходный текст
Ответы Re: PostgreSQL 9.0.3 cannot choose the best candidate function with type casts  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-novice
Good day,

I have a query in which I'm using a function called fx_get_parcel() like this:
SELECT fx_get_parcel(cast('cash' AS varchar), cast(rs_i.d_depot AS varchar)) FROM...
Without the type casts, Postgres complains that I have to add them. When I add them, the query fails and I get this
hint:
HINT: Could not choose a best candidate function. You might need to add explicit type casts.

The function has two versions:
fx_get_parcel(character varying, character varying)
and
fx_get_parcel(character varying, character varying, integer)

Both are in plpgsql.
Any ideas on how I could make it choose the first version with two parameters?
I've tried to find it in the documentation but I must have missed it somewhere.

I'm running PostgreSQL 9.0.3 on 32-bit Windows XP.

Thanks in advance. :)

Peter

В списке pgsql-novice по дате отправления:

Предыдущее
От: Devrim GÜNDÜZ
Дата:
Сообщение: Re: migrate postgresql database from 8.3 to 8.4 version ?
Следующее
От: Vibhor Kumar
Дата:
Сообщение: Re: migrate postgresql database from 8.3 to 8.4 version ?