1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
--TEST--
mysqli_get_client_stats() - skipped rows
--INI--
mysqlnd.collect_statistics="1"
mysqlnd.collect_memory_statistics="1"
--EXTENSIONS--
mysqli
--SKIPIF--
<?PHP
require_once 'skipifconnectfailure.inc';
?>
--FILE--
<?php
require_once 'connect.inc';
require_once 'table.inc';
if (!$res = mysqli_query($link, 'SELECT id FROM test', MYSQLI_STORE_RESULT))
printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
$num_rows = mysqli_num_rows($res);
assert($num_rows > 2);
mysqli_free_result($res);
$before = mysqli_get_client_stats();
printf("BEFORE: rows_skipped_normal = %d\n", $before['rows_skipped_normal']);
if (!$res = mysqli_query($link, 'SELECT id FROM test', MYSQLI_USE_RESULT))
printf("[002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
/* fetch all rows but the last one */
for ($i = 0; $i < $num_rows - 1; $i++)
mysqli_fetch_assoc($res);
/* enforce implicit cleaning of the wire and skipping the last row */
mysqli_free_result($res);
$after = mysqli_get_client_stats();
printf("AFTER: rows_skipped_normal = %d\n", $after['rows_skipped_normal']);
if ($after['rows_skipped_normal'] != $before['rows_skipped_normal'] + 1)
printf("Statistics should show an increase of 1 for rows_skipped_normal, ".
"but before=%d after=%d\n", $before['rows_skipped_normal'], $after['rows_skipped_normal']);
mysqli_close($link);
print "done!";
?>
--EXPECTF--
BEFORE: rows_skipped_normal = %d
AFTER: rows_skipped_normal = %d
done!
|