summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/select_null.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/select_null.phpt')
-rw-r--r--ext/oci8/tests/select_null.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/ext/oci8/tests/select_null.phpt b/ext/oci8/tests/select_null.phpt
deleted file mode 100644
index 87c5b815fd..0000000000
--- a/ext/oci8/tests/select_null.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
---TEST--
-SELECTing NULL values
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__)."/connect.inc";
-
-$pc = oci_pconnect($user, $password, $dbase);
-
-$stmt = oci_parse($pc, "select NULL from dual");
-oci_execute($stmt);
-var_dump(oci_fetch_array($stmt, OCI_RETURN_NULLS));
-
-echo "Done\n";
-?>
---EXPECT--
-array(2) {
- [0]=>
- NULL
- ["NULL"]=>
- NULL
-}
-Done