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

29 lines
579 B
Plaintext
Raw Normal View History

--TEST--
PostgreSQL notice function
--SKIPIF--
<?php include("skipif.inc"); ?>
2003-05-30 15:07:02 +00:00
--INI--
pgsql.log_notice=1
pgsql.ignore_notices=0
--FILE--
<?php
2003-05-20 00:14:46 +00:00
include 'config.inc';
$db = pg_connect($conn_str);
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--
2003-06-30 18:00:30 +00:00
Notice: pg_query(): %s: BEGIN: already a transaction in progress in %s on line %d
%s: BEGIN: already a transaction in progress
pg_last_notice() is Ok