Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Work around a race condition in async cancel test | Daniele Varrazzo | 2017-02-06 | 2 | -3/+10 | |
| | | | ||||||
| * | | assertDsnEqual moved as TestSuite method | Daniele Varrazzo | 2017-02-06 | 4 | -22/+25 | |
| | | | ||||||
| * | | Run the test suite with postgres versions not available on travis | Daniele Varrazzo | 2017-02-06 | 2 | -44/+157 | |
| | | | ||||||
* | | | Dropped support for Python 3.1 | Daniele Varrazzo | 2017-02-06 | 3 | -3/+2 | |
| | | | ||||||
* | | | build-manylinux script moved to build-wheels project | Daniele Varrazzo | 2017-02-06 | 1 | -50/+0 | |
|/ / | ||||||
* | | Merge branch 'conform-subclass-adapter' | Daniele Varrazzo | 2017-02-05 | 3 | -10/+25 | |
|\ \ | ||||||
| * | | Give precedence to '__conform__()' over superclasses choosing adapter | Daniele Varrazzo | 2017-02-05 | 3 | -10/+25 | |
| |/ | | | | | | | Close #456 | |||||
| * | Dropped compiler warning in debug mode | Daniele Varrazzo | 2017-02-04 | 1 | -3/+3 | |
| | | ||||||
* | | Slower timeout for a test that sometimes fail | Daniele Varrazzo | 2017-02-05 | 1 | -1/+1 | |
| | | | | | | | | | | At least it should fail with an error after 2 seconds, not waiting for Travis timeout of 10 minutes. | |||||
* | | Dropped compiler warning in debug mode | Daniele Varrazzo | 2017-02-05 | 1 | -3/+3 | |
| | | ||||||
* | | Merge pull request #504 from fogzot/pgversion-fix | Federico Di Gregorio | 2017-02-04 | 1 | -1/+3 | |
|\ \ | |/ |/| | Fixed version regexp to match "10devel" | |||||
| * | Fixed version regexp to match "10devel" | Federico Di Gregorio | 2017-02-04 | 1 | -1/+3 | |
|/ | | | | | Also normalized the result and made sure that if PostgreSQL ever starts using just integer version numbers (as in "10") everything still works. | |||||
* | Merge branch 'master' into sql-composesql-compose | Daniele Varrazzo | 2017-02-03 | 34 | -105/+922 | |
|\ | ||||||
| * | Misplaced NEWS entry fixed. | Daniele Varrazzo | 2017-02-03 | 1 | -2/+2 | |
| | | ||||||
| * | Merge branch 'async-keyword' | Daniele Varrazzo | 2017-02-03 | 18 | -56/+323 | |
| |\ | | | | | | | | | | Close #495 | |||||
| | * | Added docs for async_ alias | Daniele Varrazzo | 2017-02-03 | 4 | -1/+13 | |
| | | | ||||||
| | * | Added async_ as an alias for async | Daniele Varrazzo | 2017-02-03 | 11 | -50/+282 | |
| | | | | | | | | | | | | | | | 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 | 5 | -6/+29 | |
| | | | ||||||
| * | | Merge branch 'fast-executemany' | Daniele Varrazzo | 2017-02-03 | 4 | -198/+316 | |
| |\ \ | ||||||
| | * | | Further minimal performance tweaks to execute_valuesfast-executemany | Daniele Varrazzo | 2017-02-02 | 1 | -5/+6 | |
| | | | | ||||||
| | * | | Avoid an useless encode/decode roundtrip in execute_values() | Daniele Varrazzo | 2017-02-02 | 4 | -182/+283 | |
| | | | | | | | | | | | | | | | | Tests moved into a separate module. | |||||
| | * | | Better docs for fast executemany functions. | Daniele Varrazzo | 2017-02-02 | 1 | -15/+31 | |
| | | | | | | | | | | | | | | | | Issue #502. | |||||
| * | | | Further skipping of slow tests | Daniele Varrazzo | 2017-02-02 | 6 | -4/+13 | |
| | | | | ||||||
| * | | | Merge branch 'fast-executemany' | Daniele Varrazzo | 2017-02-02 | 5 | -6/+334 | |
| |\ \ \ | | |/ / | ||||||
| | * | | Added notes about using execute_batch with prepared statements | Daniele Varrazzo | 2017-02-02 | 1 | -0/+32 | |
| | | | | ||||||
| | * | | Fixed execute_values with unicode | Daniele Varrazzo | 2017-02-01 | 2 | -3/+55 | |
| | | | | | | | | | | | | | | | | Also added unicode tests. | |||||
| | * | | Fixed fast execute functions with Python 3 | Daniele Varrazzo | 2017-02-01 | 2 | -4/+6 | |
| | | | | ||||||
| | * | | Added execute_batch and execute_values functions | Daniele Varrazzo | 2017-02-01 | 5 | -6/+248 | |
| | | | | ||||||
| * | | | Merge branch 'manylinux' | Daniele Varrazzo | 2017-02-02 | 13 | -15/+101 | |
| |\ \ \ | | |_|/ | |/| | | ||||||
| | * | | 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. | |||||
| | * | | Use the server on the host to test | Daniele Varrazzo | 2017-02-01 | 1 | -10/+9 | |
| | | | | ||||||
| | * | | Merge back manylinux build script from the psycopg2-wheels project | Daniele Varrazzo | 2017-02-01 | 1 | -7/+11 | |
| | | | | ||||||
| | * | | Added script to create manylinux1 wheels | Daniele Varrazzo | 2017-01-04 | 2 | -0/+48 | |
| | | | | | | | | | | | | | | | | See issue #425 | |||||
| * | | | Fixed sql docs style with newer Docutils versions | Daniele Varrazzo | 2017-02-01 | 1 | -0/+2 | |
| | |/ | |/| | ||||||
| * | | Merge branch 'fix-iter-warning' | Daniele Varrazzo | 2017-01-05 | 1 | -20/+26 | |
| |\ \ | | |/ | |/| | ||||||
| | * | Fix DeprecationWarning: generator '__iter__' raised StopIterationfix-iter-warning | NotSqrt | 2017-01-04 | 1 | -20/+26 | |
| |/ | | | | | | | Closes #498 | |||||
| * | Consider Python 3.6 and Postgres 9.6 supported | Daniele Varrazzo | 2017-01-03 | 3 | -3/+4 | |
| | | ||||||
| * | Using the new name of the old doc template | Daniele Varrazzo | 2017-01-01 | 2 | -2/+2 | |
| | | ||||||
* | | Autonumbered args not available in Python 2.6 | Daniele Varrazzo | 2017-01-03 | 2 | -19/+24 | |
| | | ||||||
* | | Several improvements to the sql objects | Daniele Varrazzo | 2017-01-03 | 3 | -91/+189 | |
| | | | | | | | | Comparable, iterable, content accessible | |||||
* | | Use {} instead of %s placeholders in SQL composition | Daniele Varrazzo | 2017-01-03 | 3 | -162/+141 | |
| | | ||||||
* | | More doc love for the sql module | Daniele Varrazzo | 2017-01-01 | 4 | -24/+63 | |
| | | ||||||
* | | Added missing doc file | Daniele Varrazzo | 2017-01-01 | 1 | -0/+68 | |
| | | ||||||
* | | sql module docs wordsmithing | Daniele Varrazzo | 2017-01-01 | 2 | -4/+5 | |
| | | ||||||
* | | Dropped sql.compose | Daniele Varrazzo | 2017-01-01 | 2 | -37/+48 | |
| | | | | | | | | Use a SQL % operator instead. | |||||
* | | Adding sql module documentation | Daniele Varrazzo | 2017-01-01 | 3 | -24/+153 | |
| | | ||||||
* | | Added test for sql percents treatment | Daniele Varrazzo | 2017-01-01 | 1 | -0/+9 | |
| | | ||||||
* | | Typo: composible -> composable | Daniele Varrazzo | 2017-01-01 | 3 | -17/+17 | |
| | | ||||||
* | | Fixed sql.compose with no args and added tests | Daniele Varrazzo | 2017-01-01 | 2 | -4/+19 | |
| | |