BUG #5799: failed to find conversion function from unknown to text

From: "Sandro Santilli" <strk(at)keybit(dot)net>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #5799: failed to find conversion function from unknown to text
Date: 2010-12-21 10:08:40
Message-ID: 201012211008.oBLA8evP038251@wwwmaster.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 5799
Logged by: Sandro Santilli
Email address: strk(at)keybit(dot)net
PostgreSQL version: 8.4.3
Operating system: GNU/Linux 64bit
Description: failed to find conversion function from unknown to text
Details:

Function definition:

CREATE OR REPLACE FUNCTION ST_RelateMatch(text, text)
RETURNS bool
AS '$libdir/postgis-2.0', 'ST_RelateMatch'
LANGUAGE 'C' IMMUTABLE STRICT
COST 100;

Function invocation:

SELECT a, b, ST_RelateMatch(a,b) FROM
( SELECT '101202FFF' as a, 'TTTTTTFFF' as b) as f;

Results in:

ERROR: failed to find conversion function from unknown to text

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Dave Page 2010-12-21 11:51:30 Re: BUG #5752: installer does not give proper os privileges on folders
Previous Message Maxim Boguk 2010-12-21 02:48:09 BUG #5798: Some weird error with pl/pgsql procedure