I have below plainto_tsquery
query as part of full text searching on a PostgreSQL table.
SELECT plainto_tsquery('english', 'flat discount on flight_tickets');
This query will return 'flat' & 'discount' & 'flight' & 'ticket'
Is there any way to make it to return 'flat' & 'discount' & 'flight_ticket'
Just to avoid closing ticket by marking as duplicate, I have checked below stackoverflow questions