X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=001dec0ed14dbf070bc2b7841ed63d24cde3f4fb;hp=c22f2a95f3408f2434784c63545b209fdbfead1b;hb=HEAD;hpb=c5e31d5d4f67df1d1b6ac95d36f5b0c38afc866d diff --git a/tests/trans001.phpt b/tests/trans001.phpt index c22f2a9..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"; });