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 24288eb commit 7d538cfCopy full SHA for 7d538cf
ext/pgsql/tests/80_bug32223b.phpt
@@ -37,13 +37,13 @@ begin
37
end;
38
' LANGUAGE plpgsql;");
39
40
-$res = pg_query($dbh, 'SET client_min_messages TO NOTICE;');
+$res = pg_query(dbh, 'SET client_min_messages TO NOTICE;');
41
var_dump($res);
42
43
function tester() {
44
$res = pg_query(dbh, 'SELECT test_notice()');
45
$row = pg_fetch_row($res, 0);
46
- var_dump($row);
+ var_dump($row);
47
pg_free_result($res);
48
if ($row[0] == 'f')
49
{
@@ -58,7 +58,6 @@ pg_close(dbh);
58
===DONE===
59
--EXPECTF--
60
resource(%d) of type (pgsql result)
61
-resource(%d) of type (pgsql result)
62
array(1) {
63
[0]=>
64
string(1) "f"
0 commit comments