(lhs, rhs Expression)
| 398 | } |
| 399 | |
| 400 | func Regexp(lhs, rhs Expression) BoolExpression { |
| 401 | return newBoolExpression(lhs, rhs, []byte(" REGEXP ")) |
| 402 | } |
| 403 | |
| 404 | func RegexpL(lhs Expression, val string) BoolExpression { |
| 405 | return Regexp(lhs, Literal(val)) |
no test coverage detected