summaryrefslogtreecommitdiff
path: root/psycopg/xid_type.c
Commit message (Expand)AuthorAgeFilesLines
* Copyright year updated to 2021Daniele Varrazzo2021-06-151-1/+1
* docs: fix a few simple typosTim Gates2021-05-201-1/+1
* Copyright bumped to 2020Daniele Varrazzo2020-01-171-0/+1
* Prefix 'psycopg_' changed to 'psyco_'namingDaniele Varrazzo2019-03-171-2/+2
* Copyright year updatedDaniele Varrazzo2019-02-171-1/+1
* Dropped GC support from Xid and Notify typesDaniele Varrazzo2013-04-021-17/+6
* PyType_GenericAlloc is the default allocator: no need to specifyDaniele Varrazzo2013-03-201-1/+1
* Better use of Py_CLEAR and implicit zeroed-out structuresDaniele Varrazzo2013-03-201-51/+15
* Dropped "customized" pg_free functionsDaniele Varrazzo2013-03-201-29/+1
* Notify and Xid objects and types renamed for consistencyDaniele Varrazzo2013-03-201-32/+32
* Fixed tpc_recover() with RealDictStuffDaniele Varrazzo2012-08-141-2/+6
* Guard from NULL dereference if Xid allocation failsDaniele Varrazzo2012-03-041-1/+3
* Further modeling of exception raisingDaniele Varrazzo2012-03-041-1/+1
* Dropped redundant semicolons at the end of internal queriesDaniele Varrazzo2011-06-081-1/+1
* Windows MSVC: Fix data loss compiler warningsJason Erickson2011-02-251-1/+2
* More careful memory managementDaniele Varrazzo2011-02-231-1/+0
* Documentation cleanupDaniele Varrazzo2011-02-191-3/+3
* Fixed 2-phase commit support in Python 3.Daniele Varrazzo2010-12-311-1/+5
* The library can be compiled with Python 3.Daniele Varrazzo2010-12-211-8/+8
* Import structmember/stringobject headers from python.h.Daniele Varrazzo2010-12-211-2/+0
* Using PyVarObject_HEAD_INIT macro.Daniele Varrazzo2010-12-211-2/+1
* Using Py_TYPE and Py_REFCNT macros.Daniele Varrazzo2010-12-211-1/+1
* Changed Python const RO -> READONLY.Daniele Varrazzo2010-12-121-6/+6
* Internal imports simplified.Daniele Varrazzo2010-12-121-6/+4
* Added documentation for the Xid object.Daniele Varrazzo2010-11-051-12/+48
* Ensure unicode is accepted as type for transaction ids.Daniele Varrazzo2010-11-051-1/+1
* Added Xid.from_string() constructor.Daniele Varrazzo2010-11-051-6/+29
* Encoding/decoding in base64 refactored.Daniele Varrazzo2010-11-051-19/+16
* Added str() and repr() for Xid objects.Daniele Varrazzo2010-11-051-2/+45
* xid_get_tid returns a Python string, not a buffer.Daniele Varrazzo2010-11-051-21/+7
* Dropped XID_UNPARSED: we use format_id = None for PG xact ids.Daniele Varrazzo2010-11-051-34/+27
* XA transaction ids can be decoded from PostgreSQL transaction ids.Daniele Varrazzo2010-11-051-10/+146
* Dropped pg_xact_id from XidObjectDaniele Varrazzo2010-11-051-32/+3
* Use pgjdbc algorithm to convert XA xids into strings.Daniele Varrazzo2010-11-051-3/+52
* Added tpc_recover method.Daniele Varrazzo2010-11-051-8/+157
* Added tpc_prepare and CONN_STATUS_PREPARED.Daniele Varrazzo2010-11-051-0/+30
* Added tpc_begin() and current xid on connection.Daniele Varrazzo2010-11-051-0/+24
* Copyright of TPC files moved to LGPL V3.Daniele Varrazzo2010-11-051-12/+17
* hook up two phase commit tests.Daniele Varrazzo2010-11-051-1/+1
* There is no point in allowing subclasses of Xid.Daniele Varrazzo2010-11-051-1/+1
* implement sequence behaviour, as required for transaction IDs.Daniele Varrazzo2010-11-051-1/+42
* Added connection.xid() and related objects.Daniele Varrazzo2010-11-051-0/+251