X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=d927d2e836497c2fa0a3b13d9226d2d0589e8993;hp=11a4276a0a625a62b232620d6025a8d5a8892571;hb=6abdd023da1fdda411f3f974c484ccbcae3b9c81;hpb=d4f2435f5b1d4ca6b0a845772fc00efac703a05c diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 11a4276..d927d2e 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -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"; + 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"));