X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Fcancel001.phpt;h=89c4931dcdbcc2692b5ca252ececd730d6e464c1;hp=c39416dbb9f9cbf51f628321a6439739d9e0c128;hb=3024b0b5a903a2bcb082b01e1787410dc9508a9d;hpb=ac08c194e71fee0f68559c1ec43f323ecc334019 diff --git a/tests/cancel001.phpt b/tests/cancel001.phpt index c39416d..89c4931 100644 --- a/tests/cancel001.phpt +++ b/tests/cancel001.phpt @@ -17,14 +17,16 @@ $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(47) "ERROR: canceling statement due to user request" ["numRows"]=> @@ -36,4 +38,5 @@ object(pq\Result)#%d (6) { ["fetchType"]=> int(0) } +ERROR: canceling statement due to user request DONE