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

Mark transaction as open when started async

This commit is contained in:
Chris Wright 2014-11-27 16:18:47 +00:00
parent c223e1c70b
commit 18f89e2c90

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;