Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliviuconcioiu <liviu.concioiu@gmail.com>2021-04-17 00:44:19 +0300
committerWilliam Desportes <williamdes@wdes.fr>2021-04-23 19:58:08 +0300
commitc4ca6f346c3d5114564c5ee1c9ff4de2188e51cc (patch)
tree416009209d210fe8cebd6dd821df44ed030436cf /test/classes
parent971e07a3a2254299898e45de5fe4435b2236fa4f (diff)
Fix #16829 - Add NOT LIKE %...% operator to Table search
Signed-off-by: Liviu Concioiu <liviu.concioiu@gmail.com>
Diffstat (limited to 'test/classes')
-rw-r--r--test/classes/TypesTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/classes/TypesTest.php b/test/classes/TypesTest.php
index 66e5b846ad..39a7a5cebb 100644
--- a/test/classes/TypesTest.php
+++ b/test/classes/TypesTest.php
@@ -90,6 +90,7 @@ class TypesTest extends AbstractTestCase
'LIKE',
'LIKE %...%',
'NOT LIKE',
+ 'NOT LIKE %...%',
'=',
'!=',
'REGEXP',
@@ -122,6 +123,7 @@ class TypesTest extends AbstractTestCase
'LIKE',
'LIKE %...%',
'NOT LIKE',
+ 'NOT LIKE %...%',
'IN (...)',
'NOT IN (...)',
'BETWEEN',
@@ -171,6 +173,7 @@ class TypesTest extends AbstractTestCase
'LIKE',
'LIKE %...%',
'NOT LIKE',
+ 'NOT LIKE %...%',
'=',
'!=',
'REGEXP',