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