summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/lob_040.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/lob_040.phpt')
-rw-r--r--ext/oci8/tests/lob_040.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/oci8/tests/lob_040.phpt b/ext/oci8/tests/lob_040.phpt
index 0d60054b22..779b3b16f2 100644
--- a/ext/oci8/tests/lob_040.phpt
+++ b/ext/oci8/tests/lob_040.phpt
@@ -4,7 +4,7 @@ Bug #37706 (Test LOB locator reuse. Extends simple test of lob_037.phpt)
<?php
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
require(dirname(__FILE__).'/skipif.inc');
-?>
+?>
--FILE--
<?php
@@ -23,7 +23,7 @@ echo "Test 1: CLOB as locator\n";
$s = oci_parse($c, "select clob from ".$schema.$table_name." order by id");
oci_execute($s);
-$row = array();
+$row = array();
for ($i = 0; $i < NUMLOBS; $i++) {
$row[$i] = oci_fetch_array($s, OCI_NUM);
}
@@ -35,7 +35,7 @@ for ($i = 0; $i < NUMLOBS; $i++) {
echo "Pos 2: " . $row[$i][0]->tell() . "\n";
echo "Data: " . $row[$i][0]->read(12) . "\n";
}
-
+
echo "Done\n";
?>