We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7be9a commit c0a86fdCopy full SHA for c0a86fd
tests/system/Models/UpdateModelTest.php
@@ -380,6 +380,14 @@ public function testUpdateWithEntityNoAllowedFields(): void
380
381
public function testUpdateEntityWithPrimaryKeyCast(): void
382
{
383
+ if (
384
+ $this->db->DBDriver === 'OCI8'
385
+ || $this->db->DBDriver === 'Postgre'
386
+ || $this->db->DBDriver === 'SQLSRV'
387
+ ) {
388
+ $this->markTestSkipped($this->db->DBDriver . ' does not work with binary data as string data.');
389
+ }
390
+
391
$this->createUuidTable();
392
393
$this->createModel(UUIDPkeyModel::class);
0 commit comments