array_to_tsvector ( text[] ) → tsvectorConverts an array of text strings to a tsvector. The given strings are used as lexemes as-is, without further processing. Array elements must not be empty strings or NULL.array_to_tsvector('{fat,cat,rat}'::text[]) → 'cat' 'fat' 'rat'