X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=50b24ce3e3a20b606f3e93e439da6ac103599f4a;hp=02b8c1779f5b5d56834e53b5317e83fd78300d7f;hb=7028ab969c1803f807f99094d7dcd88fa3da8aac;hpb=86138e39ba4bfc44b3eb1c4eaa3dccabcc3cea53 diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 02b8c17..50b24ce 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -9,8 +9,11 @@ echo "Test\n"; include "_setup.inc"; $c = new pq\Connection(PQ_DSN); +new pq\Event($c, pq\Event::NOTICE, function($c, $notice) { + echo "Got notice: $notice"; +}); $t = new pq\Transaction($c); -$c->exec("CREATE TABLE test (id serial, data text)"); +$c->exec("DROP TABLE IF EXISTS test; 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->exec(array("a")); $s->exec(array("b")); @@ -24,6 +27,8 @@ $t->rollback(); 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