summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Added test to verify bug #482Daniele Varrazzo2016-12-252-3/+25
| | | |
| * | | Avoid deadlock on close if set datestyle failedDaniele Varrazzo2016-12-251-5/+11
| | | |
| * | | Dropped testing printDaniele Varrazzo2016-12-251-1/+0
| | | |
| * | | Merge branch 'master' into dont_set_datestyle_in_replication_modeDaniele Varrazzo2016-12-259-16/+104
| |\ \ \ | |/ / / |/| | |
* | | | Merge branch 'travis'Daniele Varrazzo2016-12-249-16/+104
|\ \ \ \ | |_|_|/ |/| | |
| * | | Don't use separate databases for testsDaniele Varrazzo2016-12-243-18/+8
| | | | | | | | | | | | | | | | | | | | I got this wrong: I thought parallel test ran in the same VM; they are isolated instead.
| * | | Added build badge to readmeDaniele Varrazzo2016-12-241-0/+5
| | | |
| * | | Test Python versions in a more relevant orderDaniele Varrazzo2016-12-241-5/+5
| | | |
| * | | Run the tests against all the available server versionsDaniele Varrazzo2016-12-243-11/+87
| | | |
| * | | Added python3 supported versionsDaniele Varrazzo2016-12-241-0/+5
| | | |
| * | | Fixed tests failing on Python 2.6Daniele Varrazzo2016-12-245-11/+12
| | | |
| * | | Create the hstore extension in the trevis dbDaniele Varrazzo2016-12-241-0/+1
| | | |
| * | | Disable email notificationDaniele Varrazzo2016-12-241-0/+4
| | | | | | | | | | | | | | | | Mmm... it seems it's going to be a long night...
| * | | Testing CI with TravisDaniele Varrazzo2016-12-241-0/+6
|/ / /
| * | do not "SET datestyle" on replication connectionsChristoph Moench-Tegeder2016-10-211-3/+26
|/ / | | | | | | | | | | A replication connection - marked by the use of the keyword "replication" in the DSN - does not support SET commands. Trying to sent "SET datestyle" will result in an exception.
* | Dropped compiler warning in debug modeDaniele Varrazzo2016-10-121-1/+1
| |
* | Merge branch 'networking-improvement'Daniele Varrazzo2016-10-1110-15/+281
|\ \
| * | Added ipaddress objects conversionDaniele Varrazzo2016-10-118-24/+254
| | | | | | | | | | | | Close #387
| * | Conver network array types into array of strings by defaultDaniele Varrazzo2016-10-114-7/+36
| | |
| * | inet adapters deprecatedDaniele Varrazzo2016-10-113-2/+9
|/ / | | | | | | Close #343
* | Fix unicode mogrify test on python 2Daniele Varrazzo2016-10-111-3/+9
| |
* | Python source cleanup using flake8Daniele Varrazzo2016-10-1135-432/+644
| |
* | Merge branch 'drop-libpq-pre-91'Daniele Varrazzo2016-08-159-24/+9
|\ \
| * | Mention dropping Pre 9.1 libpq support in NEWS fileDaniele Varrazzo2016-08-151-0/+2
| | |
| * | Dropped ifdef guards against obsolete libpq versionsDaniele Varrazzo2016-08-155-22/+0
| | | | | | | | | | | | | | | One of them was actually wrong: lobject_type.c wouldn't have compiled pre 8.3 (broken in 6e841a41, 2 years ago).
| * | Enforce dependency on libpq version >= 9.1Daniele Varrazzo2016-08-153-2/+7
|/ / | | | | | | | | | | | | | | PGRES_COPY_BOTH was introduced in 9.1: we can ifdef the hell out of pgpath, but we may as well bury the dead horses instead of beating them. They smell funny, too.
* | Merge branch 'drop-py25'Daniele Varrazzo2016-08-1513-128/+91
|\ \
| * | Mention dropping Py 2.5 support in NEWS fileDaniele Varrazzo2016-08-151-0/+4
| | |
| * | Dropped use of b() "macro" and 2to3 fixerDaniele Varrazzo2016-08-1510-124/+84
| | | | | | | | | | | | Just use the b"" strings syntax supported from python 2.6.
| * | Stop compiling with Python 2.5Daniele Varrazzo2016-08-153-4/+3
|/ /
* | Merge branch 'replication-protocol'Daniele Varrazzo2016-08-1427-36/+2336
|\ \
| * | Mention replication support in the NEWS fileDaniele Varrazzo2016-08-141-0/+2
| | |
| * | Name the db in the replication test like the unit test oneDaniele Varrazzo2016-08-141-3/+3
| | |
| * | Use inttypes.h definitionsDaniele Varrazzo2016-08-144-18/+17
| | |
| * | Dropped import of postgres internal/c.hDaniele Varrazzo2016-08-142-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Stops warning (caused by command line definition of PG_VERSION, so it could have been avoided otherwise), but the file comment says: Note that the definitions here are not intended to be exposed to clients of the frontend interface libraries --- so we don't worry much about polluting the namespace with lots of stuff... so it doesn't seem a good idea gulping it.
| * | Replication docs massaging, mostly formattingDaniele Varrazzo2016-08-072-11/+13
| | |
| * | Reshuffling and indexing of replication docsDaniele Varrazzo2016-08-072-72/+97
| | |
| * | Merge branch 'master' into replication-protocolDaniele Varrazzo2016-08-0728-120/+336
| |\ \ | | | | | | | | | | | | | | | | Conflicts: tests/testconfig.py
| * | | Fix TODOs in ReplicationMessage inline docsOleksandr Shulgin2016-04-211-5/+5
| | | |
| * | | Merge remote-tracking branch 'zalando/feature/replication-protocol' into ↵Oleksandr Shulgin2016-03-084-31/+36
| |\ \ \ | | | | | | | | | | | | | | | feature/replication-protocol-c-connection-object
| | * | | Fix error test for invalid START_REPLICATION command.Oleksandr Shulgin2016-01-211-2/+8
| | | | |
| | * | | Allow retrying start_replication after syntax or data error.Oleksandr Shulgin2016-01-054-31/+30
| | | | |
| * | | | Remove duplicated doc for make_dsn()Oleksandr Shulgin2016-03-081-22/+0
| | | | |
| * | | | Move replication-related imports to extras.pyOleksandr Shulgin2016-03-082-6/+4
| | | | |
| * | | | 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-088-275/+71
| | | | |
| * | | | Merge branch 'master' into feature/replication-protocol-c-connection-objectOleksandr Shulgin2016-03-0413-142/+394
| |\ \ \ \
| * | | | | Add dbname=replication for physical replication type.Oleksandr Shulgin2015-10-301-0/+4
| | | | | |
| * | | | | Move replication connection to C level.Oleksandr Shulgin2015-10-279-53/+296
| | | | | |