X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=001dec0ed14dbf070bc2b7841ed63d24cde3f4fb;hp=42e8f9eb946ba15b088f06117d6d0ae533738344;hb=HEAD;hpb=76e64a0a6074927832c2f77d8ee45f253179dfad diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 42e8f9e..001dec0 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -11,7 +11,11 @@ include "_setup.inc"; $c = new pq\Connection(PQ_DSN); $c->exec("DROP TABLE IF EXISTS test CASCADE"); $c->exec("SET client_min_messages TO NOTICE"); -$c->exec("SET lc_messages TO 'C'"); +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"; });