php-src/ext/pgsql/tests/09notice.phpt

44 lines
743 B
Plaintext
Raw Normal View History

--TEST--
PostgreSQL notice function
--SKIPIF--
<?php
include("skipif.inc");
_skip_lc_messages();
?>
2003-05-30 15:07:02 +00:00
--INI--
pgsql.log_notice=1
pgsql.ignore_notice=0
--FILE--
<?php
2003-05-20 00:14:46 +00:00
include 'config.inc';
include 'lcmess.inc';
2003-05-20 00:14:46 +00:00
$db = pg_connect($conn_str);
_set_lc_messages();
$res = pg_query($db, 'SET client_min_messages TO NOTICE;');
var_dump($res);
2003-05-20 00:14:46 +00:00
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);
}
2003-05-30 15:42:46 +00:00
echo $msg."\n";
2003-05-20 00:14:46 +00:00
echo "pg_last_notice() is Ok\n";
?>
2003-05-30 15:42:46 +00:00
--EXPECTF--
resource(%d) of type (pgsql result)
2003-12-23 17:33:06 +00:00
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