Skip to content

Commit ce4aa76

Browse files
committed
bugfix
1 parent 26c29bb commit ce4aa76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/SqlServerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function checkVersion($db)
5050
$version = sqlsrv_server_info($db);
5151
$v = explode('.',$version['SQLServerVersion']);
5252
if ($v[0]<$major || ($v[0]==$major && $v[1]<$minor) || ($v[0]==$major && $v[1]==$minor && $v[2]<$build)) {
53-
die("Detected MySQL $v[0].$v[1].$v[2], but only $major.$minor.$build and up are supported\n");
53+
die("Detected SQL Server $v[0].$v[1].$v[2], but only $major.$minor.$build and up are supported\n");
5454
}
5555
}
5656

0 commit comments

Comments
 (0)