]> granicus.if.org Git - php/commitdiff
Andrey needs to have a look at this one. The bug report itself is bogus. However...
authorUlf Wendel <uw@php.net>
Thu, 28 May 2009 18:27:44 +0000 (18:27 +0000)
committerUlf Wendel <uw@php.net>
Thu, 28 May 2009 18:27:44 +0000 (18:27 +0000)
ext/mysqli/tests/bug45289.phpt [new file with mode: 0644]

diff --git a/ext/mysqli/tests/bug45289.phpt b/ext/mysqli/tests/bug45289.phpt
new file mode 100644 (file)
index 0000000..77160e3
--- /dev/null
@@ -0,0 +1,31 @@
+--TEST--
+Bug #45289 (Bogus store_result on PS)
+--SKIPIF--
+<?php
+require_once('skipif.inc');
+require_once('skipifconnectfailure.inc');
+?>
+--FILE--
+<?php
+       include("connect.inc");
+       require('table.inc');
+
+       $id = 1;
+       if (!($stmt = $link->prepare('SELECT id, label FROM test WHERE id=? LIMIT 1')))
+               printf("[001] [%d] %s\n", $link->errno, $link->error);
+
+       if (!$stmt->bind_param('i', $id) || !$stmt->execute())
+               printf("[002] [%d] %s\n", $stmt->errno, $stmt->error);
+
+       if ($res = $link->store_result()) {
+               printf("[003] Can store result!\n");
+       } else {
+               printf("[003] [%d] %s\n", $link->errno, $link->error);
+       }
+
+       var_dump($res->fetch_assoc());
+?>
+--EXPECTF--
+[003] [0%s
+
+Fatal error: Call to a member function fetch_assoc() on a non-object in %s on line %d
\ No newline at end of file