blob: 051ce38f198f3ef6982c279096ffe08c69852135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Using pg function with default link while no link open
--FILE--
<?php
try {
pg_dbname();
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
No PostgreSQL link opened yet
|