rfe #1276463 [search] Search empty/not empty values

This commit is contained in:
Marc Delisle
2008-10-04 12:05:00 +00:00
parent eec38984ac
commit 9aac630f6b
2 changed files with 5 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
thanks to Xuefer - xuefer
- patch #2122883 [PDF schema] Option to display just the keys,
thanks to Samuel Sol Villar dos Santos - yohanleafheart
+ rfe #1276463 [search] Search empty/not empty values
3.0.1.0 (not yet released)
- bug #2134126 [GUI] SQL error after sorting a subset

View File

@@ -2762,6 +2762,8 @@ $cfg['TextOperators'] = array(
'!=',
'REGEXP',
'NOT REGEXP',
"= ''",
"!= ''"
);
/**
@@ -2802,6 +2804,8 @@ $cfg['NullOperators'] = array(
$cfg['UnaryOperators'] = array(
'IS NULL' => 1,
'IS NOT NULL' => 1,
"= ''" => 1,
"!= ''" => 1
);
?>