summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2016-11-16 16:47:35 +0300
committerDmitry Stogov <dmitry@zend.com>2016-11-16 16:47:35 +0300
commitbf17a4f09d1c40277a6643eee689f644de008dda (patch)
tree874b0c38e36939f35fb846c8c377b31d475a5e36
parent07ed7b51981362bbda4c084b2092753e57f1770d (diff)
parent1f3a5b45019d318179113b79d2b92fcb367c1ab7 (diff)
downloadphp-git-bf17a4f09d1c40277a6643eee689f644de008dda.tar.gz
Merge branch 'PHP-7.1'
* PHP-7.1: Fixed ZTS build
-rw-r--r--ext/sqlite3/tests/bug73530.phpt32
1 files changed, 0 insertions, 32 deletions
diff --git a/ext/sqlite3/tests/bug73530.phpt b/ext/sqlite3/tests/bug73530.phpt
deleted file mode 100644
index 7e17dfecd3..0000000000
--- a/ext/sqlite3/tests/bug73530.phpt
+++ /dev/null
@@ -1,32 +0,0 @@
---TEST--
-Bug #73530 (Unsetting result set may reset other result set)
---SKIPIF--
-<?php
-if (!extension_loaded('sqlite3')) die('skip sqlite3 extension not available');
-?>
---FILE--
-<?php
-$db = new SQLite3(':memory:');
-$db->exec("CREATE TABLE foo (num int)");
-$db->exec("INSERT INTO foo VALUES (0)");
-$db->exec("INSERT INTO foo VALUES (1)");
-$stmt = $db->prepare("SELECT * FROM foo WHERE NUM = ?");
-$stmt->bindValue(1, 0, SQLITE3_INTEGER);
-$res1 = $stmt->execute();
-$res1->finalize();
-$stmt->clear();
-$stmt->reset();
-$stmt->bindValue(1, 1, SQLITE3_INTEGER);
-$res2 = $stmt->execute();
-while ($row = $res2->fetchArray(SQLITE3_ASSOC)) {
- var_dump($row);
- unset($res1);
-}
-?>
-===DONE===
---EXPECT--
-array(1) {
- ["num"]=>
- int(1)
-}
-===DONE===