Definition
/**
* Create a POSIX regex match condition (~).
* Case-sensitive.
*
* Example: regex_match(col('email'), literal_string('.*@gmail\\.com'))
*
* Produces: email ~ '.*@gmail\.com'
*/
regex_match(Expression $expr, Expression $pattern) : OperatorCondition