1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-11-26 20:04:44 +01:00
ext-pq/tests/trans002.phpt
Michael Wallner 80ad126795 fixup
2014-10-15 17:56:18 +02:00

37 lines
474 B
PHP

--TEST--
txn properties
--SKIPIF--
<?php include "_skipif.inc"; ?>
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
$t = new pq\Transaction(new pq\Connection(PQ_DSN));
var_dump(
$t->isolation,
$t->readonly,
$t->deferrable
);
$t->isolation = pq\Transaction::SERIALIZABLE;
$t->readonly = true;
$t->deferrable = true;
var_dump(
$t->isolation,
$t->readonly,
$t->deferrable
);
?>
DONE
--EXPECTF--
Test
int(0)
bool(false)
bool(false)
int(2)
bool(true)
bool(true)
DONE