summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/03sync_query.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/tests/03sync_query.phpt')
-rw-r--r--ext/pgsql/tests/03sync_query.phpt3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pgsql/tests/03sync_query.phpt b/ext/pgsql/tests/03sync_query.phpt
index ce062cafd6..cc3b1b86b9 100644
--- a/ext/pgsql/tests/03sync_query.phpt
+++ b/ext/pgsql/tests/03sync_query.phpt
@@ -125,6 +125,7 @@ try {
$result = pg_query($db, "INSERT INTO ".$table_name." VALUES (9999, 'ABC');");
pg_last_oid($result);
+var_dump(pg_fetch_all($result));
pg_free_result($result);
pg_close($db);
@@ -144,4 +145,6 @@ pg_field_name(): Argument #2 ($field_number) must be greater than or equal to 0
pg_field_name(): Argument #2 ($field_number) must be less than the number of fields for this result set
pg_field_table(): Argument #2 ($field_number) must be greater than or equal to 0
pg_field_table(): Argument #2 ($field_number) must be less than the number of fields for this result set
+array(0) {
+}
OK