prepare v2.2.3
[m6w6/ext-pq] / tests / trans001.phpt
index 53617989df085a6b5b74782f87b9a7a470cca9d7..001dec0ed14dbf070bc2b7841ed63d24cde3f4fb 100644 (file)
@@ -9,16 +9,21 @@ 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) {
-       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"));