From 0d77b46f36dcbee1117f8b79a7888885f9dfefc6 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 7 May 2007 08:25:21 +0000 Subject: [PATCH] fix test --- ext/oci8/tests/bug27303.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/oci8/tests/bug27303.phpt b/ext/oci8/tests/bug27303.phpt index ff1ac53a28..a938a86530 100644 --- a/ext/oci8/tests/bug27303.phpt +++ b/ext/oci8/tests/bug27303.phpt @@ -15,7 +15,7 @@ $create_st[] = "create table mytab (mydata varchar2(20), seqcol number)"; foreach ($create_st as $statement) { $stmt = oci_parse($c, $statement); - oci_execute($stmt); + @oci_execute($stmt); } define('MYLIMIT', 200); -- 2.50.1