fix raphf dep
[m6w6/ext-pq] / tests / cancel001.phpt
index f374f666c5888696c9a3cfbbb7560ce69c4f8f80..f763847d1651424adb4b31c486efc703a1ea5c2c 100644 (file)
@@ -16,18 +16,21 @@ $c->execAsync("SELECT pg_sleep(2)");
 
 $x->cancel();
 
+var_dump($c === $x->connection);
 var_dump($c->getResult());
-
+printf("%s\n", $c->errorMessage);
 ?>
 DONE
 --EXPECTF--
 Test
-object(pq\Result)#%d (6) {
+bool(true)
+object(pq\Result)#%d (8) {
   ["status"]=>
   int(7)
+  ["statusMessage"]=>
+  string(11) "FATAL_ERROR"
   ["errorMessage"]=>
-  string(48) "ERROR:  canceling statement due to user request
-"
+  string(47) "ERROR:  canceling statement due to user request"
   ["numRows"]=>
   int(0)
   ["numCols"]=>
@@ -36,5 +39,8 @@ object(pq\Result)#%d (6) {
   int(0)
   ["fetchType"]=>
   int(0)
+  ["autoConvert"]=>
+  int(255)
 }
+ERROR:  canceling statement due to user request
 DONE