Patch #2975533 New search operators

This commit is contained in:
Martynas Mickevičius
2010-03-29 17:26:27 -04:00
committed by Marc Delisle
parent 775d2ce264
commit dbd83fa123
3 changed files with 28 additions and 2 deletions

View File

@@ -2990,6 +2990,10 @@ $cfg['NumOperators'] = array(
'!=',
'LIKE',
'NOT LIKE',
'IN (...)',
'NOT IN (...)',
'BETWEEN',
'NOT BETWEEN',
);
/**
@@ -3007,7 +3011,11 @@ $cfg['TextOperators'] = array(
'REGEXP ^...$',
'NOT REGEXP',
"= ''",
"!= ''"
"!= ''",
'IN (...)',
'NOT IN (...)',
'BETWEEN',
'NOT BETWEEN',
);
/**