Skip to content

Commit

Permalink
skip unicode strings for SQLSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Oct 29, 2024
1 parent ca095d8 commit 605c376
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/system/Database/Live/LikeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ public function testLikeCaseInsensitive(): void
#[DataProvider('provideMultibyteCharacters')]
public function testLikeCaseInsensitiveWithMultibyteCharacter(string $match, string $result): void
{
if ($this->db->DBDriver === 'SQLSRV') {
$this->markTestSkipped(
'Currently Builder class does not fully support Unicode strings in SQLSRV.'
);
}

$wai = $this->db->table('without_auto_increment')->like('value', $match, 'both', null, true)->get();
$wai = $wai->getRow();

Expand Down

0 comments on commit 605c376

Please sign in to comment.