1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-02 09:18:02 +01:00
ext-pq/tests/trans002.phpt

37 lines
474 B
Plaintext
Raw Normal View History

2013-02-14 14:54:22 +01:00
--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