????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/mysqli/tests/ |
Upload File : |
--TEST--
mysqli_get_client_stats() - skipped rows
--INI--
mysqlnd.collect_statistics="1"
mysqlnd.collect_memory_statistics="1"
--SKIPIF--
<?PHP
require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
if (!function_exists('mysqli_get_client_stats')) {
die("skip only available with mysqlnd");
}
?>
--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++)
$row = 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!