Updating test to new libmysql feature set (first introduced in MySQL 6.0 but now backported to MySQL 5.5).

This commit is contained in:
Ulf Wendel 2010-01-04 15:29:18 +00:00
parent 0004679f8a
commit 795f716832

View File

@ -117,7 +117,9 @@ require_once('skipifconnectfailure.inc');
if (($version > 51122 && $version < 60000) || ($version > 60003) || $IS_MYSQLND) {
$expected_constants['MYSQLI_ON_UPDATE_NOW_FLAG'] = true;
}
if ($version > 60005 || $IS_MYSQLND) {
/* First introduced in MySQL 6.0, backported to MySQL 5.5 */
if ($version >= 50500 || $IS_MYSQLND) {
$expected_constants['MYSQLI_SERVER_QUERY_WAS_SLOW'] = true;
}