Skip to content

Commit

Permalink
Add IN bind case to bug74625.phpt
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbj committed Jun 21, 2017
1 parent fa3615f commit b4c5f20
Showing 1 changed file with 49 additions and 12 deletions.
61 changes: 49 additions & 12 deletions ext/oci8/tests/bug74625.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,63 @@ Bug #74625 (Integer overflow in oci_bind_array_by_name)
--SKIPIF--
<?php
if (!extension_loaded('oci8')) die ("skip no oci8 extension");
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
?>
--FILE--
<?php

require(dirname(__FILE__).'/connect.inc');

$s = oci_parse($c, "BEGIN
SELECT -1 BULK COLLECT INTO :a FROM DUAL;
END;");
oci_bind_array_by_name($s, ':a', $a, 5000, 10, SQLT_INT);
oci_execute($s);
// Initialization

$stmtarray = array(
"CREATE TABLE bug74625_tab (NAME NUMBER)",
"CREATE OR REPLACE PACKAGE PKG74625 AS
TYPE ARRTYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
PROCEDURE iobind(c1 IN OUT ARRTYPE);
END PKG74625;",
"CREATE OR REPLACE PACKAGE BODY PKG74625 AS
PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
BEGIN
FOR i IN 1..5 LOOP
c1(i) := c1(i) * 2;
END LOOP;
END iobind;
END PKG74625;"
);

oci8_test_sql_execute($c, $stmtarray);

$statement = oci_parse($c, "BEGIN pkg74625.iobind(:c1); END;");

$array = Array(-1,-2,-3,-4,-5);

oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_INT);

oci_execute($statement);

var_dump($array);

// Cleanup
$stmtarray = array(
"DROP TABLE bug74625_tab",
"DROP PACKAGE PKG74625"
);

oci8_test_sql_execute($c, $stmtarray);

var_dump($a);
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Array
(
[0] => -1
)
array(5) {
[0]=>
int(-2)
[1]=>
int(-4)
[2]=>
int(-6)
[3]=>
int(-8)
[4]=>
int(-10)
}
===DONE===

0 comments on commit b4c5f20

Please sign in to comment.