summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/053.phpt
blob: f542d0f0994892286751837416b63c4824a727a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
not freed resultset 
--FILE--
<?php
	include "connect.inc";
	
	/************************
	 * non freed resultset 
	 ************************/
	$link = mysqli_connect("localhost", $user, $passwd);

	$result = mysqli_query($link, "SELECT CURRENT_USER()");
	mysqli_close($link);
	printf("Ok\n");

?>
--EXPECT--
Ok