Change string contains operators to regex (#5117)

This commit is contained in:
Reilly Wood
2022-04-06 23:23:14 -07:00
committed by GitHub
parent 888369022f
commit b2c52b51b7
11 changed files with 130 additions and 43 deletions

View File

@ -32,8 +32,8 @@ impl Expression {
Operator::Pow => 100,
Operator::Multiply | Operator::Divide | Operator::Modulo => 95,
Operator::Plus | Operator::Minus => 90,
Operator::NotContains
| Operator::Contains
Operator::NotRegexMatch
| Operator::RegexMatch
| Operator::StartsWith
| Operator::LessThan
| Operator::LessThanOrEqual