We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25aae37 commit 2463e89Copy full SHA for 2463e89
ext/pdo_pgsql/tests/copy_from.phpt
@@ -110,8 +110,10 @@ $db->rollback();
110
echo "Exception! at line ", $e->getLine(), "\n";
111
var_dump($e->getMessage());
112
}
113
-if(isset($filename)) {
114
- @unlink($filename);
+
+// Clean up
115
+foreach (array($filename, $filenameWithDifferentNullValues, $filenameWithDifferentNullValuesAndSelectedFields) as $f) {
116
+ @unlink($f);
117
118
?>
119
--EXPECT--
@@ -383,4 +385,4 @@ array(6) {
383
385
NULL
384
386
387
Testing pgsqlCopyFromFile() with error
-bool(false)
388
+bool(false)
0 commit comments