X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=1dc97baff9d1fa1bbe8eb0be2c3758be8cb59e0d;hp=53617989df085a6b5b74782f87b9a7a470cca9d7;hb=83b4777e8aee1a30a29d41971b0f2b8315e6b501;hpb=316c62ff1038faa62e4ed5fc3c8c82347d277e4c diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 5361798..1dc97ba 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -9,16 +9,16 @@ echo "Test\n"; include "_setup.inc"; $c = new pq\Connection(PQ_DSN); -$c->exec("DROP TABLE IF EXISTS test"); +$c->exec("DROP TABLE IF EXISTS test CASCADE"); +$c->exec("SET client_min_messages TO NOTICE"); $c->on(pq\Connection::EVENT_NOTICE, function($c, $notice) { - if ($notice !== 'CREATE TABLE will create implicit sequence "test_id_seq" for serial column "test.id"') { - echo "Got notice: $notice\n"; - } + echo "Got notice: $notice\n"; }); var_dump($c->transactionStatus == pq\Connection::TRANS_IDLE); $t = new pq\Transaction($c); var_dump($t->connection->transactionStatus == pq\Connection::TRANS_INTRANS); $c->exec("DROP TABLE IF EXISTS test"); +$c->off(pq\Connection::EVENT_NOTICE); $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"));