We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94ba245 commit bf855c7Copy full SHA for bf855c7
tests/_support/TestCase.php
@@ -55,7 +55,7 @@ public function seeInDatabaseExtended(string $table, array $where): void
55
public function field(string $name): string
56
{
57
if ($this->db->DBDriver === 'SQLSRV') {
58
- return "CONVERT(VARCHAR, {$name})";
+ return "CONVERT(VARCHAR(MAX), {$name})";
59
}
60
61
return $name;
0 commit comments