Hello everyone. My question if any known one postgres function, for full text search that separates words with "| "? As plainto_tsquery separating words with "& ".
For example text "word1 word2 word3 word4" and conversion rates for full text search postgres "word1 | word2 | word3 | word4" Or i must create an own function eg. on the java for normalize text for search. I guess there would not need to remove not allowed words from text to prevent sql injection...? Thanks and regards