1
0
mirror of https://github.com/danog/ext-pq.git synced 2025-01-22 13:51:20 +01:00

Merge remote-tracking branch 'DaveRandom/fix/txn-async-open'

* DaveRandom/fix/txn-async-open:
  Mark transaction as open when started async
This commit is contained in:
Michael Wallner 2014-12-03 11:07:31 +01:00
commit 56e9738f80

View File

@ -1736,6 +1736,7 @@ static PHP_METHOD(pqconn, startTransactionAsync) {
php_pq_object_addref(obj TSRMLS_CC);
txn->conn = obj;
txn->open = 1;
txn->isolation = isolation;
txn->readonly = readonly;
txn->deferrable = deferrable;