php-src/ext/pgsql/tests/09notice.phpt
2013-08-22 14:02:55 +02:00

44 lines
743 B
PHP

--TEST--
PostgreSQL notice function
--SKIPIF--
<?php
include("skipif.inc");
_skip_lc_messages();
?>
--INI--
pgsql.log_notice=1
pgsql.ignore_notice=0
--FILE--
<?php
include 'config.inc';
include 'lcmess.inc';
$db = pg_connect($conn_str);
_set_lc_messages();
$res = pg_query($db, 'SET client_min_messages TO NOTICE;');
var_dump($res);
pg_query($db, "BEGIN;");
pg_query($db, "BEGIN;");
$msg = pg_last_notice($db);
if ($msg === FALSE) {
echo "Cannot find notice message in hash\n";
var_dump($msg);
}
echo $msg."\n";
echo "pg_last_notice() is Ok\n";
?>
--EXPECTF--
resource(%d) of type (pgsql result)
Notice: pg_query(): %s already a transaction in progress in %s on line %d
%s already a transaction in progress
pg_last_notice() is Ok