summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/array_bind_004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/array_bind_004.phpt')
-rw-r--r--ext/oci8/tests/array_bind_004.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/oci8/tests/array_bind_004.phpt b/ext/oci8/tests/array_bind_004.phpt
index 7373903b6f..297229cab8 100644
--- a/ext/oci8/tests/array_bind_004.phpt
+++ b/ext/oci8/tests/array_bind_004.phpt
@@ -4,7 +4,7 @@ oci_bind_array_by_name() and invalid values 4
<?php
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
require(dirname(__FILE__).'/skipif.inc');
-?>
+?>
--FILE--
<?php
@@ -19,15 +19,15 @@ $statement = oci_parse($c, $create);
oci_execute($statement);
$create_pkg = "
-CREATE OR REPLACE PACKAGE ARRAY_BIND_004_PKG AS
- TYPE ARRTYPE IS TABLE OF DATE INDEX BY BINARY_INTEGER;
- PROCEDURE iobind(c1 IN OUT ARRTYPE);
+CREATE OR REPLACE PACKAGE ARRAY_BIND_004_PKG AS
+ TYPE ARRTYPE IS TABLE OF DATE INDEX BY BINARY_INTEGER;
+ PROCEDURE iobind(c1 IN OUT ARRTYPE);
END ARRAY_BIND_004_PKG;";
$statement = oci_parse($c, $create_pkg);
oci_execute($statement);
$create_pkg_body = "
-CREATE OR REPLACE PACKAGE BODY ARRAY_BIND_004_PKG AS
+CREATE OR REPLACE PACKAGE BODY ARRAY_BIND_004_PKG AS
CURSOR CUR IS SELECT name FROM bind_test;
PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
BEGIN