mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Restore underlined operator #1202
This commit is contained in:
parent
5ddf928869
commit
4bf0611d21
1 changed files with 3 additions and 0 deletions
|
|
@ -133,8 +133,10 @@ class Condition
|
|||
case 'notlike_tail' :
|
||||
case 'notlike_prefix' :
|
||||
case 'notlike' :
|
||||
case 'not_like' :
|
||||
case 'regexp' :
|
||||
case 'notregexp' :
|
||||
case 'not_regexp' :
|
||||
case 'in' :
|
||||
case 'notin' :
|
||||
case 'not_in' :
|
||||
|
|
@ -231,6 +233,7 @@ class Condition
|
|||
return $name . ' REGEXP ' . $value;
|
||||
break;
|
||||
case 'notregexp' :
|
||||
case 'not_regexp' :
|
||||
return $name . ' NOT REGEXP ' . $value;
|
||||
break;
|
||||
case 'in' :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue