summaryrefslogtreecommitdiff
path: root/psycopg
Commit message (Expand)AuthorAgeFilesLines
* Dropped compiler warning in debug modeDaniele Varrazzo2016-10-121-1/+1
* Conver network array types into array of strings by defaultDaniele Varrazzo2016-10-111-0/+6
* Dropped ifdef guards against obsolete libpq versionsDaniele Varrazzo2016-08-155-22/+0
* Enforce dependency on libpq version >= 9.1Daniele Varrazzo2016-08-152-1/+5
* Stop compiling with Python 2.5Daniele Varrazzo2016-08-151-2/+2
* Merge branch 'replication-protocol'Daniele Varrazzo2016-08-1414-1/+1502
|\
| * Use inttypes.h definitionsDaniele Varrazzo2016-08-144-18/+17
| * Dropped import of postgres internal/c.hDaniele Varrazzo2016-08-142-4/+5
| * Merge branch 'master' into replication-protocolDaniele Varrazzo2016-08-0712-79/+167
| |\
| * | Fix TODOs in ReplicationMessage inline docsOleksandr Shulgin2016-04-211-5/+5
| * | Merge remote-tracking branch 'zalando/feature/replication-protocol' into feat...Oleksandr Shulgin2016-03-083-31/+17
| |\ \
| | * | Allow retrying start_replication after syntax or data error.Oleksandr Shulgin2016-01-053-31/+17
| * | | Remove some dead codeOleksandr Shulgin2016-03-083-47/+1
| * | | We don't need to expose cursor_init(), call tp_init() on the type instead.Oleksandr Shulgin2016-03-083-13/+5
| * | | Use python-defined make_dsn() for ReplicationConnection classOleksandr Shulgin2016-03-085-260/+67
| * | | Merge branch 'master' into feature/replication-protocol-c-connection-objectOleksandr Shulgin2016-03-041-2/+3
| |\ \ \
| * | | | Add dbname=replication for physical replication type.Oleksandr Shulgin2015-10-301-0/+4
| * | | | Move replication connection to C level.Oleksandr Shulgin2015-10-274-1/+275
| * | | | Merge branch 'feature/connect2' into feature/replication-protocolOleksandr Shulgin2015-10-273-7/+253
| |\ \ \ \ | | |_|/ / | |/| | |
| | * | | Rework psycopg2.connect() interface.Oleksandr Shulgin2015-10-273-7/+253
| * | | | Merge branch 'master' into feature/replication-protocolOleksandr Shulgin2015-10-271-2/+2
| |\ \ \ \ | | |/ / /
| * | | | Drop ReplicationCursor.flush_feedback(), rectify pq_*_replication_*() interface.Oleksandr Shulgin2015-10-235-92/+48
| * | | | Move the `decode` parameter to `start_replication()`.Oleksandr Shulgin2015-10-234-37/+27
| * | | | Use direct call to consume() callable in pq_copy_both()Oleksandr Shulgin2015-10-221-5/+3
| * | | | Fix cursor_init() declaration for use in replication_cursor_type.cOleksandr Shulgin2015-10-201-1/+2
| * | | | Fix send_time printf format in replmsg_repr().Oleksandr Shulgin2015-10-201-1/+1
| * | | | Add quick start to the replication doc, minor doc fixes.Oleksandr Shulgin2015-10-201-1/+1
| * | | | Properly subclass ReplicationCursor on C level.Oleksandr Shulgin2015-10-198-310/+505
| * | | | Replace stop_replication with requirement for an exception.Oleksandr Shulgin2015-10-193-26/+1
| * | | | Merge branch 'master' into feature/replication-protocolOleksandr Shulgin2015-10-152-3/+64
| |\ \ \ \
| * | | | | Add psyco_curs_datetime_initOleksandr Shulgin2015-10-143-3/+18
| * | | | | Remove commented copy_both code in pqfetch.Oleksandr Shulgin2015-10-141-7/+2
| * | | | | Clear repl_stop flag after the consume loop.Oleksandr Shulgin2015-10-141-0/+1
| * | | | | Add checks on replication state, have to have a separate check for consume loop.Oleksandr Shulgin2015-10-142-11/+35
| * | | | | Update stop_repl, require replication consumer to be a callable.Oleksandr Shulgin2015-10-142-12/+12
| * | | | | Fix stop_replication: always raise outside the loop.Oleksandr Shulgin2015-10-141-2/+2
| * | | | | Rework replication connection/cursor classesOleksandr Shulgin2015-10-016-60/+120
| * | | | | Cleanup start replication wrt. slot type a bit.Oleksandr Shulgin2015-10-011-4/+0
| * | | | | Remove typedef for uint32, include internal/c.hOleksandr Shulgin2015-10-011-2/+2
| * | | | | Merge remote-tracking branch 'origin/master' into replOleksandr Shulgin2015-10-013-7/+84
| |\ \ \ \ \
| * | | | | | Fix use of PQconsumeInput() in pq_read_replication_message()Oleksandr Shulgin2015-07-071-11/+25
| * | | | | | Fix missing GC flag in ReplicationMessage typeOleksandr Shulgin2015-07-031-3/+11
| * | | | | | Fix missing free in replmsg_deallocOleksandr Shulgin2015-07-031-0/+4
| * | | | | | Check return value of PQsocketOleksandr Shulgin2015-07-021-6/+9
| * | | | | | Fix PQconsumeInput usage.Oleksandr Shulgin2015-07-021-4/+9
| * | | | | | Comment on special handling of PGRES_COPY_BOTHOleksandr Shulgin2015-06-301-0/+4
| * | | | | | Merge remote-tracking branch 'zalando/feature/replication-protocol' into feat...Oleksandr Shulgin2015-06-309-40/+105
| |\ \ \ \ \ \
| | * \ \ \ \ \ Merge branch 'master' into feature/replication-message-objectOleksandr Shulgin2015-06-309-40/+105
| | |\ \ \ \ \ \
| * | | | | | | | Rework replication protocolOleksandr Shulgin2015-06-304-219/+334
| |/ / / / / / /
| * | | | | | | Refer cursor from ReplicationMessage object. At the same time, for the sync u...Oleksandr Shulgin2015-06-115-30/+21