mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +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_tail' :
|
||||||
case 'notlike_prefix' :
|
case 'notlike_prefix' :
|
||||||
case 'notlike' :
|
case 'notlike' :
|
||||||
|
case 'not_like' :
|
||||||
case 'regexp' :
|
case 'regexp' :
|
||||||
case 'notregexp' :
|
case 'notregexp' :
|
||||||
|
case 'not_regexp' :
|
||||||
case 'in' :
|
case 'in' :
|
||||||
case 'notin' :
|
case 'notin' :
|
||||||
case 'not_in' :
|
case 'not_in' :
|
||||||
|
|
@ -231,6 +233,7 @@ class Condition
|
||||||
return $name . ' REGEXP ' . $value;
|
return $name . ' REGEXP ' . $value;
|
||||||
break;
|
break;
|
||||||
case 'notregexp' :
|
case 'notregexp' :
|
||||||
|
case 'not_regexp' :
|
||||||
return $name . ' NOT REGEXP ' . $value;
|
return $name . ' NOT REGEXP ' . $value;
|
||||||
break;
|
break;
|
||||||
case 'in' :
|
case 'in' :
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue