From: Antony Dovgal Date: Fri, 6 Oct 2006 09:57:29 +0000 (+0000) Subject: new test X-Git-Tag: RELEASE_1_0_0RC1~1396 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0de658d31d08f5d5bfc8c9f6da7659d52a54b3d9;p=php new test --- diff --git a/ext/oci8/tests/pecl_bug8816.phpt b/ext/oci8/tests/pecl_bug8816.phpt new file mode 100644 index 0000000000..c369711fcf --- /dev/null +++ b/ext/oci8/tests/pecl_bug8816.phpt @@ -0,0 +1,98 @@ +--TEST-- +PECL Bug #8816 (issue in php_oci_statement_fetch with more than one piecewise column) +--SKIPIF-- + +--FILE-- + +--EXPECT-- +array(2) { + ["L1"]=> + string(19) "1234567890111111111" + ["L2"]=> + string(9) "987654321" +} +array(2) { + ["L1"]=> + string(15) "122222222222222" + ["L2"]=> + string(9) "123456789" +} +array(2) { + ["L1"]=> + string(30) "985456745674567654567654567654" + ["L2"]=> + string(30) "985456745674567654567654567654" +} +array(2) { + ["L1"]=> + string(9) "123456789" + ["L2"]=> + string(15) "122222222222222" +} +array(2) { + ["L1"]=> + string(9) "987654321" + ["L2"]=> + string(19) "1234567890111111111" +} +Done