BORK hunting - Fixing SKIPIF

This commit is contained in:
Ulf Wendel 2011-09-06 14:47:57 +00:00
parent fe89680010
commit ccd842f912

View File

@ -13,7 +13,7 @@ if (!$IS_MYSQLND)
if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
die("skip cannot connect");
if (mysqli_server_version($link) < 50012)
if (mysqli_get_server_version($link) < 50012)
die("skip Test needs SQL function SLEEP() available as of MySQL 5.0.12");
?>