summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/coll_017.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/coll_017.phpt')
-rw-r--r--ext/oci8/tests/coll_017.phpt38
1 files changed, 0 insertions, 38 deletions
diff --git a/ext/oci8/tests/coll_017.phpt b/ext/oci8/tests/coll_017.phpt
deleted file mode 100644
index 42347ba6f8..0000000000
--- a/ext/oci8/tests/coll_017.phpt
+++ /dev/null
@@ -1,38 +0,0 @@
---TEST--
-collections and nulls (2)
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__)."/connect.inc";
-
-$ora_sql = "DROP TYPE
- ".$type_name."
- ";
-
-$statement = OCIParse($c,$ora_sql);
-@OCIExecute($statement);
-
-$ora_sql = "CREATE TYPE ".$type_name." AS TABLE OF VARCHAR(10)";
-
-$statement = OCIParse($c,$ora_sql);
-OCIExecute($statement);
-
-
-$coll1 = ocinewcollection($c, $type_name);
-
-var_dump($coll1->append("string"));
-var_dump($coll1->assignElem(0, null));
-var_dump($coll1->getElem(0));
-
-echo "Done\n";
-
-require dirname(__FILE__)."/drop_type.inc";
-
-?>
---EXPECT--
-bool(true)
-bool(true)
-NULL
-Done