1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-02 09:18:02 +01:00
ext-pq/tests/async006.phpt

106 lines
1.6 KiB
Plaintext
Raw Normal View History

2013-01-23 00:02:55 +01:00
--TEST--
async unbuffered exec
--SKIPIF--
<?php
include "_skipif.inc";
defined("pq\\Result::SINGLE_TUPLE") or die("skip need pq\\Result::SINGLE_TUPLE");
?>
2013-01-23 00:02:55 +01:00
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
$c = new pq\Connection(PQ_DSN);
$c->unbuffered = true;
$c->execAsync("SELECT a FROM generate_series(1,3) a", function ($res) {
var_dump($res);
});
do {
while ($c->busy) {
$r = array($c->socket);
$w = $e = null;
if (stream_select($r, $w, $e, null)) {
$c->poll();
}
}
} while ($c->getResult());
?>
DONE
--EXPECTF--
Test
2014-09-12 16:52:39 +02:00
object(pq\Result)#%d (8) {
2013-01-23 00:02:55 +01:00
["status"]=>
int(9)
["statusMessage"]=>
string(12) "SINGLE_TUPLE"
2013-01-23 00:02:55 +01:00
["errorMessage"]=>
string(0) ""
["numRows"]=>
int(1)
["numCols"]=>
int(1)
["affectedRows"]=>
int(0)
["fetchType"]=>
int(0)
2014-09-12 16:52:39 +02:00
["autoConvert"]=>
2014-09-17 14:13:53 +02:00
int(65535)
2013-01-23 00:02:55 +01:00
}
2014-09-12 16:52:39 +02:00
object(pq\Result)#%d (8) {
2013-01-23 00:02:55 +01:00
["status"]=>
int(9)
["statusMessage"]=>
string(12) "SINGLE_TUPLE"
2013-01-23 00:02:55 +01:00
["errorMessage"]=>
string(0) ""
["numRows"]=>
int(1)
["numCols"]=>
int(1)
["affectedRows"]=>
int(0)
["fetchType"]=>
int(0)
2014-09-12 16:52:39 +02:00
["autoConvert"]=>
2014-09-17 14:13:53 +02:00
int(65535)
2013-01-23 00:02:55 +01:00
}
2014-09-12 16:52:39 +02:00
object(pq\Result)#%d (8) {
2013-01-23 00:02:55 +01:00
["status"]=>
int(9)
["statusMessage"]=>
string(12) "SINGLE_TUPLE"
2013-01-23 00:02:55 +01:00
["errorMessage"]=>
string(0) ""
["numRows"]=>
int(1)
["numCols"]=>
int(1)
["affectedRows"]=>
int(0)
["fetchType"]=>
int(0)
2014-09-12 16:52:39 +02:00
["autoConvert"]=>
2014-09-17 14:13:53 +02:00
int(65535)
2013-01-23 00:02:55 +01:00
}
2014-09-12 16:52:39 +02:00
object(pq\Result)#%d (8) {
2013-01-23 00:02:55 +01:00
["status"]=>
int(2)
["statusMessage"]=>
string(9) "TUPLES_OK"
2013-01-23 00:02:55 +01:00
["errorMessage"]=>
string(0) ""
["numRows"]=>
int(0)
["numCols"]=>
int(1)
["affectedRows"]=>
int(3)
["fetchType"]=>
int(0)
2014-09-12 16:52:39 +02:00
["autoConvert"]=>
2014-09-17 14:13:53 +02:00
int(65535)
2013-01-23 00:02:55 +01:00
}
DONE