X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Fasync005.phpt;h=343992ac2164b4cddd2e4ad91b866e97a5ec200a;hp=0382ade3db069402ba4eb93da16f63add4898c71;hb=f2b5f0a77cd3d7fbf5a4ba88320dcfbd03f02107;hpb=8c92aa4bd855482cc76117129e16b42c7ecc57f0 diff --git a/tests/async005.phpt b/tests/async005.phpt index 0382ade..343992a 100644 --- a/tests/async005.phpt +++ b/tests/async005.phpt @@ -21,7 +21,8 @@ function complete($s) { } $c = new pq\Connection(PQ_DSN); -$s = $c->prepareAsync("test", "SELECT \$1,\$2::int4", array($c->types->byName->int4->oid)); +$t = new pq\Types($c); +$s = $c->prepareAsync("test", "SELECT \$1,\$2::int4", array($t["int4"]->oid)); complete($s); @@ -35,9 +36,11 @@ complete($s); DONE --EXPECTF-- Test -object(pq\Result)#%d (6) { +object(pq\Result)#%d (8) { ["status"]=> int(2) + ["statusMessage"]=> + string(9) "TUPLES_OK" ["errorMessage"]=> string(0) "" ["numRows"]=> @@ -45,8 +48,10 @@ object(pq\Result)#%d (6) { ["numCols"]=> int(2) ["affectedRows"]=> - int(1) + int(%d) ["fetchType"]=> int(0) + ["autoConvert"]=> + int(65535) } -DONE \ No newline at end of file +DONE