drop test table twice; once with notice
authorMichael Wallner <mike@php.net>
Tue, 5 Feb 2013 21:00:06 +0000 (22:00 +0100)
committerMichael Wallner <mike@php.net>
Tue, 5 Feb 2013 21:00:06 +0000 (22:00 +0100)
tests/trans001.phpt

index e6d53ee703593da20002af807b40f2ccd22aaaed..d927d2e836497c2fa0a3b13d9226d2d0589e8993 100644 (file)
@@ -9,11 +9,13 @@ echo "Test\n";
 include "_setup.inc";
 
 $c = new pq\Connection(PQ_DSN);
+$c->exec("DROP TABLE IF EXISTS test");
 new pq\Event($c, pq\Event::NOTICE, function($c, $notice) {
        echo "Got notice: $notice\n";
 });
 $t = new pq\Transaction($c);
-$c->exec("DROP TABLE IF EXISTS test; CREATE TABLE test (id serial, data text)");
+$c->exec("DROP TABLE IF EXISTS test");
+$c->exec("CREATE TABLE test (id serial, data text)");
 $s = $c->prepare("test_insert", "INSERT INTO test (data) VALUES (\$1)", array((new pq\Types($c))["text"]->oid));
 $s->exec(array("a"));
 $s->exec(array("b"));