Skip to content

Commit e5ebbbb

Browse files
committed
skip unicode strings for SQLSRV
1 parent 4f1f8d0 commit e5ebbbb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/system/Database/Live/LikeTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ public function testLikeCaseInsensitive(): void
7979
#[DataProvider('provideMultibyteCharacters')]
8080
public function testLikeCaseInsensitiveWithMultibyteCharacter(string $match, string $result): void
8181
{
82+
if ($this->db->DBDriver === 'SQLSRV') {
83+
$this->markTestSkipped(
84+
'Currently Builder class does not fully support Unicode strings in SQLSRV.'
85+
);
86+
}
87+
8288
$wai = $this->db->table('without_auto_increment')->like('value', $match, 'both', null, true)->get();
8389
$wai = $wai->getRow();
8490

0 commit comments

Comments
 (0)