Fixed bug #76548 pg_fetch_result did not fetch the next row

This commit is contained in:
Anatol Belski 2018-06-29 18:34:53 +02:00
parent bf5a802f5a
commit cb97fd3097
2 changed files with 24 additions and 0 deletions

View File

@ -2669,6 +2669,7 @@ PHP_FUNCTION(pg_fetch_result)
if (pgsql_row >= PQntuples(pgsql_result)) {
RETURN_FALSE;
}
pg_result->row++;
} else {
if (row < 0 || row >= PQntuples(pgsql_result)) {
php_error_docref(NULL, E_WARNING, "Unable to jump to row " ZEND_LONG_FMT " on PostgreSQL result index " ZEND_LONG_FMT,

View File

@ -0,0 +1,23 @@
--TEST--
Bug #76548 pg_fetch_result did not fetch the next row
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
include('config.inc');
$conn = pg_connect($conn_str);
$result = pg_query($conn, 'SELECT v FROM (VALUES (1), (2), (3)) AS t(v)');
while ($value = pg_fetch_result($result, 0)) {
var_dump($value); // should be 1, 2 then 3.
}
?>
==DONE==
--EXPECTF--
string(1) "1"
string(1) "2"
string(1) "3"
==DONE==