"Sandro Santilli" writes:
> SELECT a, b, ST_RelateMatch(a,b) FROM
> ( SELECT '101202FFF' as a, 'TTFFF' as b) as f;
> Results in:
> ERROR: failed to find conversion function from unknown to text
Cast those unknown literals to text explicitly, ie
SELECT a, b, ST_RelateMatch(a,b) FROM
The following bug has been logged online:
Bug reference: 5799
Logged by: Sandro Santilli
Email address: s...@keybit.net
PostgreSQL version: 8.4.3
Operating system: GNU/Linux 64bit
Description:failed to find conversion function from unknown to text
Details:
Function