summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch 'master' into sql-composesql-composeDaniele Varrazzo2017-02-0317-61/+583
|\
| * Merge branch 'async-keyword'Daniele Varrazzo2017-02-0310-43/+282
| |\ | | | | | | | | | Close #495
| | * Added async_ as an alias for asyncDaniele Varrazzo2017-02-038-39/+259
| | | | | | | | | | | | | | | Added in argument for psycopg2.connect() and connection.__init__, and for the connection.async attribute.
| | * Convert warnings into errors on testDaniele Varrazzo2017-02-034-5/+24
| | |
| * | Merge branch 'fast-executemany'Daniele Varrazzo2017-02-033-178/+239
| |\ \
| | * | Avoid an useless encode/decode roundtrip in execute_values()Daniele Varrazzo2017-02-023-178/+239
| | | | | | | | | | | | | | | | Tests moved into a separate module.
| * | | Further skipping of slow testsDaniele Varrazzo2017-02-026-4/+13
| | | |
| * | | Merge branch 'fast-executemany'Daniele Varrazzo2017-02-021-0/+178
| |\ \ \ | | |/ /
| | * | Fixed execute_values with unicodeDaniele Varrazzo2017-02-011-2/+54
| | | | | | | | | | | | | | | | Also added unicode tests.
| | * | Fixed fast execute functions with Python 3Daniele Varrazzo2017-02-011-2/+2
| | | |
| | * | Added execute_batch and execute_values functionsDaniele Varrazzo2017-02-011-0/+126
| | |/
| * | Added note about finding slow testsDaniele Varrazzo2017-02-021-1/+6
| | |
| * | Allow skipping the slow testmanylinuxDaniele Varrazzo2017-02-0211-15/+45
| |/ | | | | | | | | | | | | | | It's not so much about tests being slow: some just get stuck and timeout travis. Skipped all tests taking about more than 0.2s to run on my laptop. Fast testing takes about 8s instead of 24.
* | Autonumbered args not available in Python 2.6Daniele Varrazzo2017-01-031-12/+17
| |
* | Several improvements to the sql objectsDaniele Varrazzo2017-01-031-15/+74
| | | | | | | | Comparable, iterable, content accessible
* | Use {} instead of %s placeholders in SQL compositionDaniele Varrazzo2017-01-031-26/+55
| |
* | Dropped sql.composeDaniele Varrazzo2017-01-011-21/+20
| | | | | | | | Use a SQL % operator instead.
* | Adding sql module documentationDaniele Varrazzo2017-01-011-0/+5
| |
* | Added test for sql percents treatmentDaniele Varrazzo2017-01-011-0/+9
| |
* | Typo: composible -> composableDaniele Varrazzo2017-01-011-5/+5
| |
* | Fixed sql.compose with no args and added testsDaniele Varrazzo2017-01-011-0/+15
| |
* | Fixed sql.Composed representationDaniele Varrazzo2017-01-011-0/+6
| |
* | Fixed sql stuff in Py3Daniele Varrazzo2017-01-011-2/+0
| |
* | Added basic sql module implementationDaniele Varrazzo2017-01-011-1/+222
| |
* | Adding some boilerplate for the new moduleDaniele Varrazzo2017-01-013-3/+40
|/
* Merge branch 'master' into named-callprocDaniele Varrazzo2016-12-2625-382/+1109
|\
| * Skip replication tests in green modeDaniele Varrazzo2016-12-251-3/+8
| |
| * Added test to verify bug #482Daniele Varrazzo2016-12-252-3/+25
| |
| * Fixed tests failing on Python 2.6Daniele Varrazzo2016-12-245-11/+12
| |
| * Added ipaddress objects conversionDaniele Varrazzo2016-10-112-7/+135
| | | | | | | | Close #387
| * Conver network array types into array of strings by defaultDaniele Varrazzo2016-10-111-0/+10
| |
| * Fix unicode mogrify test on python 2Daniele Varrazzo2016-10-111-3/+9
| |
| * Python source cleanup using flake8Daniele Varrazzo2016-10-1121-236/+387
| |
| * Dropped use of b() "macro" and 2to3 fixerDaniele Varrazzo2016-08-155-73/+67
| | | | | | | | Just use the b"" strings syntax supported from python 2.6.
| * Merge branch 'replication-protocol'Daniele Varrazzo2016-08-147-32/+234
| |\
| | * Merge branch 'master' into replication-protocolDaniele Varrazzo2016-08-074-18/+77
| | |\ | | | | | | | | | | | | | | | | Conflicts: tests/testconfig.py
| | * \ Merge remote-tracking branch 'zalando/feature/replication-protocol' into ↵Oleksandr Shulgin2016-03-081-0/+19
| | |\ \ | | | | | | | | | | | | | | | 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-051-0/+13
| | | | |
| | * | | Use python-defined make_dsn() for ReplicationConnection classOleksandr Shulgin2016-03-081-1/+1
| | | | |
| | * | | Merge branch 'master' into feature/replication-protocol-c-connection-objectOleksandr Shulgin2016-03-044-68/+191
| | |\ \ \
| | * | | | Move replication connection to C level.Oleksandr Shulgin2015-10-271-3/+0
| | | | | |
| | * | | | Merge branch 'feature/connect2' into feature/replication-protocolOleksandr Shulgin2015-10-271-8/+24
| | |\ \ \ \ | | | |_|/ / | | |/| | |
| | | * | | Rework psycopg2.connect() interface.Oleksandr Shulgin2015-10-271-8/+24
| | | | | |
| | * | | | Drop ReplicationCursor.flush_feedback(), rectify pq_*_replication_*() interface.Oleksandr Shulgin2015-10-231-1/+1
| | | | | |
| | * | | | Actually add replication tests to the test suite.Oleksandr Shulgin2015-10-201-0/+2
| | | | | |
| | * | | | Properly subclass ReplicationCursor on C level.Oleksandr Shulgin2015-10-191-4/+16
| | | | | |
| | * | | | Improve async replication test.Oleksandr Shulgin2015-10-192-35/+50
| | | | | |
| | * | | | Replace stop_replication with requirement for an exception.Oleksandr Shulgin2015-10-191-14/+31
| | | | | |
| | * | | | Fix PSYCOPG2_TEST_REPL_DSN handling.Oleksandr Shulgin2015-10-162-1/+21
| | | | | |