Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge branch 'master' into sql-composesql-compose | Daniele Varrazzo | 2017-02-03 | 17 | -61/+583 | |
|\ | ||||||
| * | Merge branch 'async-keyword' | Daniele Varrazzo | 2017-02-03 | 10 | -43/+282 | |
| |\ | | | | | | | | | | Close #495 | |||||
| | * | Added async_ as an alias for async | Daniele Varrazzo | 2017-02-03 | 8 | -39/+259 | |
| | | | | | | | | | | | | | | | Added in argument for psycopg2.connect() and connection.__init__, and for the connection.async attribute. | |||||
| | * | Convert warnings into errors on test | Daniele Varrazzo | 2017-02-03 | 4 | -5/+24 | |
| | | | ||||||
| * | | Merge branch 'fast-executemany' | Daniele Varrazzo | 2017-02-03 | 3 | -178/+239 | |
| |\ \ | ||||||
| | * | | Avoid an useless encode/decode roundtrip in execute_values() | Daniele Varrazzo | 2017-02-02 | 3 | -178/+239 | |
| | | | | | | | | | | | | | | | | Tests moved into a separate module. | |||||
| * | | | Further skipping of slow tests | Daniele Varrazzo | 2017-02-02 | 6 | -4/+13 | |
| | | | | ||||||
| * | | | Merge branch 'fast-executemany' | Daniele Varrazzo | 2017-02-02 | 1 | -0/+178 | |
| |\ \ \ | | |/ / | ||||||
| | * | | Fixed execute_values with unicode | Daniele Varrazzo | 2017-02-01 | 1 | -2/+54 | |
| | | | | | | | | | | | | | | | | Also added unicode tests. | |||||
| | * | | Fixed fast execute functions with Python 3 | Daniele Varrazzo | 2017-02-01 | 1 | -2/+2 | |
| | | | | ||||||
| | * | | Added execute_batch and execute_values functions | Daniele Varrazzo | 2017-02-01 | 1 | -0/+126 | |
| | |/ | ||||||
| * | | Added note about finding slow tests | Daniele Varrazzo | 2017-02-02 | 1 | -1/+6 | |
| | | | ||||||
| * | | Allow skipping the slow testmanylinux | Daniele Varrazzo | 2017-02-02 | 11 | -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.6 | Daniele Varrazzo | 2017-01-03 | 1 | -12/+17 | |
| | | ||||||
* | | Several improvements to the sql objects | Daniele Varrazzo | 2017-01-03 | 1 | -15/+74 | |
| | | | | | | | | Comparable, iterable, content accessible | |||||
* | | Use {} instead of %s placeholders in SQL composition | Daniele Varrazzo | 2017-01-03 | 1 | -26/+55 | |
| | | ||||||
* | | Dropped sql.compose | Daniele Varrazzo | 2017-01-01 | 1 | -21/+20 | |
| | | | | | | | | Use a SQL % operator instead. | |||||
* | | Adding sql module documentation | Daniele Varrazzo | 2017-01-01 | 1 | -0/+5 | |
| | | ||||||
* | | Added test for sql percents treatment | Daniele Varrazzo | 2017-01-01 | 1 | -0/+9 | |
| | | ||||||
* | | Typo: composible -> composable | Daniele Varrazzo | 2017-01-01 | 1 | -5/+5 | |
| | | ||||||
* | | Fixed sql.compose with no args and added tests | Daniele Varrazzo | 2017-01-01 | 1 | -0/+15 | |
| | | ||||||
* | | Fixed sql.Composed representation | Daniele Varrazzo | 2017-01-01 | 1 | -0/+6 | |
| | | ||||||
* | | Fixed sql stuff in Py3 | Daniele Varrazzo | 2017-01-01 | 1 | -2/+0 | |
| | | ||||||
* | | Added basic sql module implementation | Daniele Varrazzo | 2017-01-01 | 1 | -1/+222 | |
| | | ||||||
* | | Adding some boilerplate for the new module | Daniele Varrazzo | 2017-01-01 | 3 | -3/+40 | |
|/ | ||||||
* | Merge branch 'master' into named-callproc | Daniele Varrazzo | 2016-12-26 | 25 | -382/+1109 | |
|\ | ||||||
| * | Skip replication tests in green mode | Daniele Varrazzo | 2016-12-25 | 1 | -3/+8 | |
| | | ||||||
| * | Added test to verify bug #482 | Daniele Varrazzo | 2016-12-25 | 2 | -3/+25 | |
| | | ||||||
| * | Fixed tests failing on Python 2.6 | Daniele Varrazzo | 2016-12-24 | 5 | -11/+12 | |
| | | ||||||
| * | Added ipaddress objects conversion | Daniele Varrazzo | 2016-10-11 | 2 | -7/+135 | |
| | | | | | | | | Close #387 | |||||
| * | Conver network array types into array of strings by default | Daniele Varrazzo | 2016-10-11 | 1 | -0/+10 | |
| | | ||||||
| * | Fix unicode mogrify test on python 2 | Daniele Varrazzo | 2016-10-11 | 1 | -3/+9 | |
| | | ||||||
| * | Python source cleanup using flake8 | Daniele Varrazzo | 2016-10-11 | 21 | -236/+387 | |
| | | ||||||
| * | Dropped use of b() "macro" and 2to3 fixer | Daniele Varrazzo | 2016-08-15 | 5 | -73/+67 | |
| | | | | | | | | Just use the b"" strings syntax supported from python 2.6. | |||||
| * | Merge branch 'replication-protocol' | Daniele Varrazzo | 2016-08-14 | 7 | -32/+234 | |
| |\ | ||||||
| | * | Merge branch 'master' into replication-protocol | Daniele Varrazzo | 2016-08-07 | 4 | -18/+77 | |
| | |\ | | | | | | | | | | | | | | | | | Conflicts: tests/testconfig.py | |||||
| | * \ | Merge remote-tracking branch 'zalando/feature/replication-protocol' into ↵ | Oleksandr Shulgin | 2016-03-08 | 1 | -0/+19 | |
| | |\ \ | | | | | | | | | | | | | | | | feature/replication-protocol-c-connection-object | |||||
| | | * | | Fix error test for invalid START_REPLICATION command. | Oleksandr Shulgin | 2016-01-21 | 1 | -2/+8 | |
| | | | | | ||||||
| | | * | | Allow retrying start_replication after syntax or data error. | Oleksandr Shulgin | 2016-01-05 | 1 | -0/+13 | |
| | | | | | ||||||
| | * | | | Use python-defined make_dsn() for ReplicationConnection class | Oleksandr Shulgin | 2016-03-08 | 1 | -1/+1 | |
| | | | | | ||||||
| | * | | | Merge branch 'master' into feature/replication-protocol-c-connection-object | Oleksandr Shulgin | 2016-03-04 | 4 | -68/+191 | |
| | |\ \ \ | ||||||
| | * | | | | Move replication connection to C level. | Oleksandr Shulgin | 2015-10-27 | 1 | -3/+0 | |
| | | | | | | ||||||
| | * | | | | Merge branch 'feature/connect2' into feature/replication-protocol | Oleksandr Shulgin | 2015-10-27 | 1 | -8/+24 | |
| | |\ \ \ \ | | | |_|/ / | | |/| | | | ||||||
| | | * | | | Rework psycopg2.connect() interface. | Oleksandr Shulgin | 2015-10-27 | 1 | -8/+24 | |
| | | | | | | ||||||
| | * | | | | Drop ReplicationCursor.flush_feedback(), rectify pq_*_replication_*() interface. | Oleksandr Shulgin | 2015-10-23 | 1 | -1/+1 | |
| | | | | | | ||||||
| | * | | | | Actually add replication tests to the test suite. | Oleksandr Shulgin | 2015-10-20 | 1 | -0/+2 | |
| | | | | | | ||||||
| | * | | | | Properly subclass ReplicationCursor on C level. | Oleksandr Shulgin | 2015-10-19 | 1 | -4/+16 | |
| | | | | | | ||||||
| | * | | | | Improve async replication test. | Oleksandr Shulgin | 2015-10-19 | 2 | -35/+50 | |
| | | | | | | ||||||
| | * | | | | Replace stop_replication with requirement for an exception. | Oleksandr Shulgin | 2015-10-19 | 1 | -14/+31 | |
| | | | | | | ||||||
| | * | | | | Fix PSYCOPG2_TEST_REPL_DSN handling. | Oleksandr Shulgin | 2015-10-16 | 2 | -1/+21 | |
| | | | | | |