From 47c918cd6f522ee10fbe7701d025a788e740a8a5 Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Wed, 16 Jul 2008 19:52:01 +0000 Subject: [PATCH] MFH: improve skipif --- ext/oci8/tests/xmltype_01.phpt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ext/oci8/tests/xmltype_01.phpt b/ext/oci8/tests/xmltype_01.phpt index 25dc2cf56d..49420259f1 100644 --- a/ext/oci8/tests/xmltype_01.phpt +++ b/ext/oci8/tests/xmltype_01.phpt @@ -2,6 +2,7 @@ Basic XMLType test --SKIPIF-- + --FILE-- load(); var_dump($data); return($data); @@ -65,10 +66,10 @@ $sx->Nice = 'Y'; $s = oci_parse($c, 'update xtt set xt_spec = XMLType(:clob) where xt_id = 1'); -$lob = oci_new_descriptor($c, OCI_D_LOB); +$lob = oci_new_descriptor($c, OCI_D_LOB); oci_bind_by_name($s, ':clob', $lob, -1, OCI_B_CLOB); -$lob->writeTemporary($sx->asXml()); -oci_execute($s); +$lob->writeTemporary($sx->asXml()); +oci_execute($s); $lob->close(); // Verify -- 2.50.1