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
path: root/test
diff options
context:
space:
mode:
authorLakshay arora <carefreelakshay97@gmail.com>2018-05-12 09:44:58 +0300
committerMaurĂ­cio Meneghini Fauth <mauriciofauth@gmail.com>2018-05-12 09:44:58 +0300
commit9231620c2de872bbdf5a21b63f084ad601d400d3 (patch)
tree42feb28199e2fbf6a0266444bb5e085300858a1d /test
parent8bd91ffdaa5bfb3651749a6f97de51c1b67a005e (diff)
Fix for issues with spatial fields (#14125)
* Fix for issues with spatial fields Fixes the following issues: 1. #14068 SPATIAL fields with no unique index/autoincrement error when clicking This error occurs when there is no unique column to uniquely identify a tuple. I've disabled the geomtery view and made view as wkt the default view in such cases. 2. #14121 View spatial fields as WKT doesn't work 1. #14067 IS NULL search operator produces no WHERE SQL with spatial fields Signed-Off-By: Lakshay arora <arora.lakshya123@gmail.com> * Fix for issues with spatial fields This commit fixes view as BINARY not working in the previous commit. Signed-Off-By: Lakshay arora <arora.lakshya123@gmail.com> * Fix for issues with spatial fields Fixes typo in previous commits. Signed-Off-By: Lakshay arora <arora.lakshya123@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/classes/Controllers/Table/TableSearchControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/classes/Controllers/Table/TableSearchControllerTest.php b/test/classes/Controllers/Table/TableSearchControllerTest.php
index 254ff2b8d9..dfbf8f15fc 100644
--- a/test/classes/Controllers/Table/TableSearchControllerTest.php
+++ b/test/classes/Controllers/Table/TableSearchControllerTest.php
@@ -319,7 +319,7 @@ class TableSearchControllerTest extends PmaTestCase
'b', 'a'
);
$_POST['criteriaColumnOperators'] = array(
- '<=', '='
+ '<=', '=', 'IS NULL', 'IS NOT NULL'
);
$_POST['criteriaValues'] = array(
'10', '2'