update tests
[m6w6/ext-pq] / tests / async005.phpt
index 0382ade3db069402ba4eb93da16f63add4898c71..a956026ffa551074ac276ad58eedc55aeb23be68 100644 (file)
@@ -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"]=>
@@ -48,5 +51,7 @@ object(pq\Result)#%d (6) {
   int(1)
   ["fetchType"]=>
   int(0)
+  ["autoConvert"]=>
+  int(255)
 }
-DONE
\ No newline at end of file
+DONE