summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-07-27 23:53:19 +0200
committerAnatol Belski <ab@php.net>2016-07-27 23:53:19 +0200
commit915d2b942028402e1336de44a5e8f058f6d3c52b (patch)
treeff3430430271ee87fa214ce24ab1b508568f620e /ext
parentb28758565db5e2b6a657f37168e737d67c8483bd (diff)
parent266c62070f7e8e98106cd7b28a86aafc3e537c5b (diff)
downloadphp-git-915d2b942028402e1336de44a5e8f058f6d3c52b.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: cleanup the table after the test run
Diffstat (limited to 'ext')
-rw-r--r--ext/pdo_pgsql/tests/bug_last_insert_id.phpt5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/tests/bug_last_insert_id.phpt b/ext/pdo_pgsql/tests/bug_last_insert_id.phpt
index 24e889b30d..30dd0f039a 100644
--- a/ext/pdo_pgsql/tests/bug_last_insert_id.phpt
+++ b/ext/pdo_pgsql/tests/bug_last_insert_id.phpt
@@ -16,7 +16,7 @@ $db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false);
-@$db->query('CREATE TABLE test_last_id (id SERIAL NOT NULL, field1 VARCHAR(10))');
+$db->query('CREATE TABLE test_last_id (id SERIAL NOT NULL, field1 VARCHAR(10))');
$stmt = $db->prepare("INSERT INTO test_last_id (field1) VALUES ('test')");
@@ -30,6 +30,9 @@ var_dump($db->lastInsertId());
* Sequence name informed
*/
var_dump($db->lastInsertId('test_last_id_id_seq'));
+
+$db->query('DROP TABLE test_last_id');
+
?>
--EXPECTREGEX--
string\([0-9]*\)\ \"[0-9]*\"