List:Commits« Previous MessageNext Message »
From:uwendel Date:September 6 2007 4:13pm
Subject:PHP mysqlnd svn commit: r1000 - trunk/tests/ext/mysqli
View as plain text  
Author: uwendel
Date: 2007-09-06 16:13:54 +0200 (Thu, 06 Sep 2007)
New Revision: 1000

Added:
   trunk/tests/ext/mysqli/mysqli_get_client_stats_implicit_free.phpt
Log:
Needs to be checked.


Added: trunk/tests/ext/mysqli/mysqli_get_client_stats_implicit_free.phpt
===================================================================
--- trunk/tests/ext/mysqli/mysqli_get_client_stats_implicit_free.phpt	2007-09-06 13:49:30
UTC (rev 999)
+++ trunk/tests/ext/mysqli/mysqli_get_client_stats_implicit_free.phpt	2007-09-06 14:13:54
UTC (rev 1000)
@@ -0,0 +1,42 @@
+--TEST--
+mysqli_get_client_stats() - implicit_free_result
+--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");
+}
+?>
+--INI--
+mysqlnd.collect_statistics=1
+mysqlnd.collect_memory_statistics=1
+--FILE--
+<?php
+	require_once('connect.inc');
+	require_once('table.inc');
+
+	$stats = mysqli_get_client_stats();
+	printf("BEGINNING: implicit_free_result = %d\n",	$stats['implicit_free_result']);
+
+	if (!$res = mysqli_query($link, 'SELECT id FROM test'))
+		printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
+
+	mysqli_free_result($res);
+	mysqli_close($link);
+
+	$after = mysqli_get_client_stats();
+	if ($after['implicit_free_result'] != $stats['implicit_free_result'])
+		printf("[002] Where is the missing mysqli_free_result() call? implicit_free_result has
changed by %d.\n",
+			$after['implicit_free_result'] - $stats['implicit_free_result']);
+
+	$stats = $after;
+	printf("END: implicit_free_result = %d\n",	$stats['implicit_free_result']);
+
+	print "done!";
+?>
+--EXPECTF--
+BEGINNING: implicit_free_result = %d
+END: implicit_free_result = %d
+done!
\ No newline at end of file

Thread
PHP mysqlnd svn commit: r1000 - trunk/tests/ext/mysqliuwendel6 Sep