summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/23sync_query_params.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/tests/23sync_query_params.phpt')
-rw-r--r--ext/pgsql/tests/23sync_query_params.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/pgsql/tests/23sync_query_params.phpt b/ext/pgsql/tests/23sync_query_params.phpt
index 6959cd75a7..a700ddca17 100644
--- a/ext/pgsql/tests/23sync_query_params.phpt
+++ b/ext/pgsql/tests/23sync_query_params.phpt
@@ -1,8 +1,8 @@
--TEST--
PostgreSQL sync query params
--SKIPIF--
-<?php
-include("skipif.inc");
+<?php
+include("skipif.inc");
if (!function_exists('pg_query_params')) die('skip function pg_query_params() does not exist');
?>
--FILE--
@@ -19,19 +19,19 @@ if ($version['protocol'] >= 3) {
{
echo "pg_num_row() error\n";
}
- for ($i=0; $i < $rows; $i++)
+ for ($i=0; $i < $rows; $i++)
{
pg_fetch_array($result, $i, PGSQL_NUM);
}
- for ($i=0; $i < $rows; $i++)
+ for ($i=0; $i < $rows; $i++)
{
pg_fetch_object($result);
}
- for ($i=0; $i < $rows; $i++)
+ for ($i=0; $i < $rows; $i++)
{
pg_fetch_row($result, $i);
}
- for ($i=0; $i < $rows; $i++)
+ for ($i=0; $i < $rows; $i++)
{
pg_fetch_result($result, $i, 0);
}