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