Definition
/**
* Create a full-text search match condition (@@).
*
* Example: text_search_match(col('document'), func('to_tsquery', [literal('english'), literal('hello & world')]))
* Produces: document @@ to_tsquery('english', 'hello & world')
*/
text_search_match(Expression|string $document, Expression|string $query) : OperatorCondition