X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=001dec0ed14dbf070bc2b7841ed63d24cde3f4fb;hp=0524cffd8be1fbd1d401952a9c95cd91d3d0578a;hb=HEAD;hpb=630017bcb9957e50967f5528b947d33746c07a4f diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 0524cff..001dec0 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -9,7 +9,13 @@ 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"); +try { + $c->exec("SET lc_messages TO 'C'"); +} catch (pq\Exception $e) { + // do not die if we are not superuser +} $c->on(pq\Connection::EVENT_NOTICE, function($c, $notice) { echo "Got notice: $notice\n"; }); @@ -17,6 +23,7 @@ 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")); @@ -35,7 +42,6 @@ Test bool(true) bool(true) Got notice: NOTICE: table "test" does not exist, skipping -Got notice: NOTICE: CREATE TABLE will create implicit sequence "test_id_seq" for serial column "test.id" 1 => a 2 => b 3 => c