summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-08-02 14:35:24 +0200
committerAnatol Belski <ab@php.net>2016-08-02 14:35:24 +0200
commit40b3a031b2549aeafd5ca9290b504a4c537a9adf (patch)
tree0384f9effe282916ab6e5211abd996ba08c83d0e
parent90c6cbd09baa8802cd0d92ad13d9d791a3e4025d (diff)
downloadphp-git-40b3a031b2549aeafd5ca9290b504a4c537a9adf.tar.gz
cleanup table after test
-rw-r--r--ext/pdo_pgsql/tests/bug_last_insert_id.phpt7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/pdo_pgsql/tests/bug_last_insert_id.phpt b/ext/pdo_pgsql/tests/bug_last_insert_id.phpt
index af5d342798..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,7 +30,10 @@ 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]*\"
-string\([0-9]*\)\ \"[0-9]*\" \ No newline at end of file
+string\([0-9]*\)\ \"[0-9]*\"