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:
authorKamil Tekiela <tekiela246@gmail.com>2022-08-15 16:19:17 +0300
committerKamil Tekiela <tekiela246@gmail.com>2022-08-15 16:35:21 +0300
commitfc932a9a8f40cb696a6af6a098a79209a6e7aa8d (patch)
tree171f2ab7e02be5dc8143ae69fe013c2f7067183c /test
parent8b99611988342c12a69fab4940de47898538061b (diff)
Allow fields to be set to NULL
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/classes/InsertEditTest.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/classes/InsertEditTest.php b/test/classes/InsertEditTest.php
index 13ee204b74..590fa810d3 100644
--- a/test/classes/InsertEditTest.php
+++ b/test/classes/InsertEditTest.php
@@ -2143,6 +2143,30 @@ class InsertEditTest extends AbstractTestCase
],
$result
);
+
+ // Test to see if a field can be set to NULL
+ $result = $this->insertEdit->getQueryValuesForInsertAndUpdateInMultipleEdit(
+ $multi_edit_columns_name,
+ ['on'],
+ '',
+ [''],
+ [],
+ false,
+ [],
+ [],
+ 'NULL',
+ [],
+ '0',
+ []
+ );
+
+ $this->assertEquals(
+ [
+ ['`fld` = NULL'],
+ [],
+ ],
+ $result
+ );
}
/**