merge danglind Statement->descAsync patch
[m6w6/ext-pq] / tests / trans001.phpt
index 02b8c1779f5b5d56834e53b5317e83fd78300d7f..d927d2e836497c2fa0a3b13d9226d2d0589e8993 100644 (file)
@@ -9,9 +9,14 @@ echo "Test\n";
 include "_setup.inc";
 
 $c = new pq\Connection(PQ_DSN);
 include "_setup.inc";
 
 $c = new pq\Connection(PQ_DSN);
+$c->exec("DROP TABLE IF EXISTS test");
+new pq\Event($c, pq\Event::NOTICE, function($c, $notice) {
+       echo "Got notice: $notice\n";
+});
 $t = new pq\Transaction($c);
 $t = new pq\Transaction($c);
+$c->exec("DROP TABLE IF EXISTS test");
 $c->exec("CREATE TABLE test (id serial, data text)");
 $c->exec("CREATE TABLE test (id serial, data text)");
-$s = $c->prepare("test_insert", "INSERT INTO test (data) VALUES (\$1)", array($c->types->byName->text->oid));
+$s = $c->prepare("test_insert", "INSERT INTO test (data) VALUES (\$1)", array((new pq\Types($c))["text"]->oid));
 $s->exec(array("a"));
 $s->exec(array("b"));
 $s->exec(array("c"));
 $s->exec(array("a"));
 $s->exec(array("b"));
 $s->exec(array("c"));
@@ -24,6 +29,8 @@ $t->rollback();
 DONE
 --EXPECT--
 Test
 DONE
 --EXPECT--
 Test
+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
 1 => a
 2 => b
 3 => c