From: Ulf Wendel Date: Fri, 2 Sep 2011 13:35:17 +0000 (+0000) Subject: Coverage for bug#54704, of which I think it is bogus, thus no dedicated test. X-Git-Tag: php-5.3.9RC1~264 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b23baaf0fca5241844c32e87af2c4ec531051c93;p=php Coverage for bug#54704, of which I think it is bogus, thus no dedicated test. --- diff --git a/ext/mysql/tests/mysql_num_rows.phpt b/ext/mysql/tests/mysql_num_rows.phpt index 1f68b4d609..0f538c4a2b 100644 --- a/ext/mysql/tests/mysql_num_rows.phpt +++ b/ext/mysql/tests/mysql_num_rows.phpt @@ -54,6 +54,23 @@ if ($res = mysql_query('SELECT COUNT(id) AS num FROM test', $link)) { printf("[030] [%d] %s\n", mysql_errno($link), mysql_error($link)); } +if ($res = mysql_unbuffered_query('SELECT id, label FROM test')) { + + if (0 != mysql_num_rows($res)) + printf("[032] Expecting 0 rows got %d\n", mysql_num_rows($res)); + + $rows = 0; + while ($row = mysql_fetch_assoc($res)) + $rows++; + + if ($rows != mysql_num_rows($res)) + printf("[033] Expecting %d rows got %d\n", $rows, mysql_num_rows($res)); + + mysql_free_result($res); +} else { + printf("[034] [%d] %s\n", mysql_errno($link), mysql_error($link)); +} + mysql_close($link); print "done!"; ?>