Du kan använda tsearch-prefixmatchning, se http ://www.postgresql.org/docs/9.0/interactive/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES
postgres=# select to_tsvector('tree') @@ to_tsquery('tr:*');
?column?
----------
t
(1 row)
Det fungerar dock bara för prefixsökning, inte om du vill ha partiell matchning vid valfri position i ordet.