diff options
author | Andrey Hristov <andrey@php.net> | 2008-04-24 14:04:58 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-04-24 14:04:58 +0000 |
commit | 5da78b297bde9402b4e92bd8d5ac7608da46a91d (patch) | |
tree | 5617e8974c9c7b08a09125df953d9095966915cc /ext/mysql/tests/mysql_fetch_array.phpt | |
parent | dedb146a691249b72cd583cc3c3f4cb56c4eabd3 (diff) | |
download | php-git-5da78b297bde9402b4e92bd8d5ac7608da46a91d.tar.gz |
Update ext/mysql's and ext/mysqli's tests
Add mysqli_stmt_more_result()/mysqli_stmt_next_result(), but only in
mysqlnd builds as libmysql doesn't support this feature.
Diffstat (limited to 'ext/mysql/tests/mysql_fetch_array.phpt')
-rw-r--r-- | ext/mysql/tests/mysql_fetch_array.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysql/tests/mysql_fetch_array.phpt b/ext/mysql/tests/mysql_fetch_array.phpt index f197ae9494..c3a70ea55c 100644 --- a/ext/mysql/tests/mysql_fetch_array.phpt +++ b/ext/mysql/tests/mysql_fetch_array.phpt @@ -184,9 +184,9 @@ func_mysql_fetch_array($link, $engine, "BIGINT", NULL, NULL, 260); // func_mysql_fetch_array($link, $engine, "BIGINT UNSIGNED", 18446744073709551615, "1.84467e+019", 270, "/1\.84467e\+[0]?19/iu"); func_mysql_fetch_array($link, $engine, "BIGINT UNSIGNED", NULL, NULL, 280); -func_mysql_fetch_array($link, $engine, "FLOAT", -9223372036854775808 - 1.1, "-9.22337e+18", 290, "/-9\.22337e\+[0]?18/iu"); +func_mysql_fetch_array($link, $engine, "FLOAT", -9223372036854775808 - 1.1, "-9.22337e+18", 290, "/-9\.22337e\+?[0]?18/iu"); func_mysql_fetch_array($link, $engine, "FLOAT", NULL, NULL, 300); -func_mysql_fetch_array($link, $engine, "FLOAT UNSIGNED", 18446744073709551615 + 1.1, "1.84467e+19", 310, "/1\.84467e\+[0]?19/iu"); +func_mysql_fetch_array($link, $engine, "FLOAT UNSIGNED", 18446744073709551615 + 1.1, "1.84467e+19", 310, "/1\.84467e\+?[0]?19/iu"); func_mysql_fetch_array($link, $engine, "FLOAT UNSIGNED ", NULL, NULL, 320); func_mysql_fetch_array($link, $engine, "DOUBLE(10,2)", -99999999.99, "-99999999.99", 330); |