summaryrefslogtreecommitdiff
path: root/ext/oci8
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-05-07 08:25:12 +0000
committerAntony Dovgal <tony2001@php.net>2007-05-07 08:25:12 +0000
commitf0dbacb7153d2699e80576b2f8f96ec1905ff6f1 (patch)
tree16652dca0603d88103fd33d7d04cb0237121853c /ext/oci8
parent0a63bd4d0b78e7b3c59d9b0ac877047e3f53f8d7 (diff)
downloadphp-git-f0dbacb7153d2699e80576b2f8f96ec1905ff6f1.tar.gz
fix test
Diffstat (limited to 'ext/oci8')
-rw-r--r--ext/oci8/tests/bug27303.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/tests/bug27303.phpt b/ext/oci8/tests/bug27303.phpt
index 191cdffe67..8ba087bc1a 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);