add default propoerties to connection
[m6w6/ext-pq] / src / php_pqconn.h
index c9f1e15d5221a1cccc0c783b07eeb24cf28e53a1..1a283d0558e58dd470e6ab1368ad99bbfc74a976 100644 (file)
@@ -30,6 +30,10 @@ typedef struct php_pqconn {
        HashTable eventhandlers;
        php_pq_callback_t onevent;
        unsigned unbuffered:1;
+       unsigned default_fetch_type:2;
+       unsigned default_txn_isolation:2;
+       unsigned default_txn_readonly:1;
+       unsigned default_txn_deferrable:1;
 } php_pqconn_t;
 
 typedef struct php_pqconn_object {