X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;fp=tests%2Ftrans001.phpt;h=11a4276a0a625a62b232620d6025a8d5a8892571;hp=50b24ce3e3a20b606f3e93e439da6ac103599f4a;hb=d4f2435f5b1d4ca6b0a845772fc00efac703a05c;hpb=6bfbeb8ffcd60f29887a65dc6838c64c4522ae0b diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 50b24ce..11a4276 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -14,7 +14,7 @@ new pq\Event($c, pq\Event::NOTICE, function($c, $notice) { }); $t = new pq\Transaction($c); $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 = $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"));