X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Fcancel001.phpt;h=89c4931dcdbcc2692b5ca252ececd730d6e464c1;hp=f374f666c5888696c9a3cfbbb7560ce69c4f8f80;hb=cd5d3cdafda1f9e9fe120c9eaf1269fdc577f04d;hpb=86138e39ba4bfc44b3eb1c4eaa3dccabcc3cea53 diff --git a/tests/cancel001.phpt b/tests/cancel001.phpt index f374f66..89c4931 100644 --- a/tests/cancel001.phpt +++ b/tests/cancel001.phpt @@ -17,17 +17,18 @@ $c->execAsync("SELECT pg_sleep(2)"); $x->cancel(); var_dump($c->getResult()); - +printf("%s\n", $c->errorMessage); ?> DONE --EXPECTF-- Test -object(pq\Result)#%d (6) { +object(pq\Result)#%d (7) { ["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"]=> @@ -37,4 +38,5 @@ object(pq\Result)#%d (6) { ["fetchType"]=> int(0) } +ERROR: canceling statement due to user request DONE