postgresql-simple icon indicating copy to clipboard operation
postgresql-simple copied to clipboard

FromField instance for TSVector

Open delanoe opened this issue 7 years ago • 0 comments

Hello, TSVector type of Postgres is the following: https://www.postgresql.org/docs/8.3/datatype-textsearch.html Example of tsvector: "'cat':2 'dog:5 'animal':10"

To add the FromField instance we need a parser. Do you have an example of implementation that could help to parser for the TSVector FromField instances ?

Specifications would be the following: type TSVector = [Vector] data Vector = Vector { text :: Text , position :: Int }

Many thanks for your help

delanoe avatar Dec 08 '18 08:12 delanoe