PostgreSQL - Full-Text Search
Given the following SQL commands:
What is the output of the
CREATE TEXT SEARCH CONFIGURATION my_english ( COPY = english );
ALTER TEXT SEARCH CONFIGURATION my_english
ALTER MAPPING FOR asciiword, asciihword, hword_asciipart
WITH simple;
SELECT to_tsvector('my_english', 'PostgreSQL is great!');What is the output of the
SELECT statement?