We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87a706c commit c357e4cCopy full SHA for c357e4c
1 file changed
tests/system/Models/UpdateModelTest.php
@@ -421,6 +421,11 @@ public function testUpdateBatchEntityWithPrimaryKeyCast(): void
421
$this->markTestSkipped($this->db->DBDriver . ' does not work with binary data as string data.');
422
}
423
424
+ // See https://github.com/codeigniter4/CodeIgniter4/pull/8282#issuecomment-1836974182
425
+ $this->markTestSkipped(
426
+ 'batchUpdate() is currently not working due to data type issues in the generated SQL statement.'
427
+ );
428
+
429
$this->createUuidTable();
430
431
$this->createModel(UUIDPkeyModel::class);
0 commit comments