summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/libpq-events.c
AgeCommit message (Collapse)Author
2014-01-07Update copyright for 2014Bruce Momjian
Update all files in head, and files COPYRIGHT and legal.sgml in all back branches.
2013-01-01Update copyrights for 2013Bruce Momjian
Fully update git head, and update back branches in ./COPYRIGHT and legal.sgml files.
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
provided by Andrew.
2009-01-01Update copyright for 2009.Bruce Momjian
2008-09-19Add a PQfireResultCreateEvents function to allow applications to mimic theTom Lane
sequence of operations that libpq goes through while creating a PGresult. Also, remove ill-considered "const" decoration on parameters passed to event procedures.
2008-09-19Improve the recently-added libpq events code to provide more consistentTom Lane
guarantees about whether event procedures will receive DESTROY events. They no longer need to defend themselves against getting a DESTROY without a successful prior CREATE. Andrew Chernow
2008-09-17Add an "events" system to libpq, whereby applications can get callbacks thatTom Lane
enable them to manage private data associated with PGconns and PGresults. Andrew Chernow and Merlin Moncure