summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/coll_011.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/coll_011.phpt')
-rw-r--r--ext/oci8/tests/coll_011.phpt43
1 files changed, 0 insertions, 43 deletions
diff --git a/ext/oci8/tests/coll_011.phpt b/ext/oci8/tests/coll_011.phpt
deleted file mode 100644
index 7d805d3f70..0000000000
--- a/ext/oci8/tests/coll_011.phpt
+++ /dev/null
@@ -1,43 +0,0 @@
---TEST--
-collections and strings
---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);
-$coll2 = ocinewcollection($c, $type_name);
-
-var_dump($coll1->append("string"));
-var_dump($coll1->append("string"));
-
-var_dump($coll2->assign($coll1));
-
-var_dump($coll2->getElem(0));
-
-echo "Done\n";
-
-require dirname(__FILE__)."/drop_type.inc";
-
-?>
---EXPECT--
-bool(true)
-bool(true)
-bool(true)
-string(6) "string"
-Done