summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/bug36010.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/bug36010.phpt')
-rw-r--r--ext/oci8/tests/bug36010.phpt26
1 files changed, 0 insertions, 26 deletions
diff --git a/ext/oci8/tests/bug36010.phpt b/ext/oci8/tests/bug36010.phpt
deleted file mode 100644
index ef435496a8..0000000000
--- a/ext/oci8/tests/bug36010.phpt
+++ /dev/null
@@ -1,26 +0,0 @@
---TEST--
-bug #36010 (Crash when executing SQL statment with lob parameter twice)
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__).'/connect.inc';
-
-function f($conn)
-{
- $sql = "begin :p_clob := 'lob string'; end;";
- $stid = oci_parse($conn, $sql);
- $clob = oci_new_descriptor($conn, OCI_D_LOB);
- oci_bind_by_name($stid, ":p_clob", $clob, -1, OCI_B_CLOB);
- $r = oci_execute($stid, OCI_DEFAULT);
-}
-
-f($c);
-f($c);
-
-echo "Done\n";
-
-?>
---EXPECT--
-Done