summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Python 2 compatibilitycockroachdb-testsDaniele Varrazzo2020-08-171-2/+2
|
* Added possibility to skip a test only on certain crdb versionsDaniele Varrazzo2020-08-171-4/+27
|
* Added ticket numbers for the tests skipped on crdbDaniele Varrazzo2020-08-171-0/+27
|
* Added missing reasons for crdb skipDaniele Varrazzo2020-08-173-7/+10
| | | | Added check to make sure a reason must be passed.
* TeamCity commit hook testDaniele Varrazzo2020-08-040-0/+0
|
* Added reason for skipping on CockroachDBDaniele Varrazzo2020-07-2719-89/+97
|
* Types tests adapted to CockroachDBDaniele Varrazzo2020-07-232-14/+29
|
* Several other tests skipped for CockroachDBDaniele Varrazzo2020-07-229-14/+34
| | | | The only remaining test modules in this branch are test_types_basic/extra.
* Some extra cursors test skipped on CockroachDBDaniele Varrazzo2020-07-222-3/+21
| | | | Skip named cursor tests
* Skip a few date tests on CockroachDBDaniele Varrazzo2020-07-221-1/+4
| | | | | | - Infinity gets converted to large dates in the past/future out of Python range - Timestamps get an UTC timezone attached
* Cursor tests adapted to CockroachDBDaniele Varrazzo2020-07-211-223/+231
| | | | Named cursor tests separated to skip all in one go
* Get CockroachDB version from the connection infoDaniele Varrazzo2020-07-211-14/+11
|
* Skip copy tests on CockroachDBDaniele Varrazzo2020-07-211-1/+5
|
* Skip connection tests which cannot pass on CockroachDBDaniele Varrazzo2020-07-212-1/+36
| | | | | | | | | | | Features not supported seem: - isolation level (always serializable) - client encodings - notices (maybe there is a way to generate them) - 2 phase commit - reset (because of the lack of transaction deferrable) - backend pid
* Expose libpq PG* vars as testconfig contentDaniele Varrazzo2020-07-211-4/+4
|
* Skip cancel tests on CockroachDBDaniele Varrazzo2020-07-213-8/+12
| | | | One test moved to the async tests module, as it really belongs there.
* All the sync tests pass on CockroachDBDaniele Varrazzo2020-07-212-5/+23
| | | | Added decorator to skip tests on crdb
* Allow most of the async tests to pass on CockroachDBDaniele Varrazzo2020-07-212-1/+38
| | | | Added function to get crdb version from a connection
* Merge pull request #1127 from rafiss/iso-level-finally-blockDaniele Varrazzo2020-07-081-3/+5
|\ | | | | Handle failure in setup of IsolationLevelsTestCase
| * Handle failure in setup of IsolationLevelsTestCaseRafi Shamim2020-07-071-3/+5
|/ | | | | | | | | | | If the CREATE TABLE statement fails, the setup would fail without committing or rolling back the active transaction, so the transaction would hold onto its resources indefinitely. Normally, the transaction would be closed when the connection is closed in the `tearDown` function. However, `tearDown` is not called if there was an error during `setUp` ([as specified by the `unittest` docs](https://docs.python.org/3/library/unittest.html#unittest.TestCase.tearDown)), so we need to handle this case specially.
* Merge pull request #1105 from rafiss/with-block-connection-testDaniele Varrazzo2020-05-301-3/+5
|\ | | | | Handle failure in setup of ConnectionTwoPhaseTest
| * Handle failure in setup of ConnectionTwoPhaseTestRafi Shamim2020-05-121-3/+5
| | | | | | | | | | | | Previously, this test had a bug, because if the CREATE TABLE statement failed, the setup would fail without committing or rolling back the active transaction.
* | Merge pull request #1111 from cjolif/masterDaniele Varrazzo2020-05-291-1/+1
|\ \ | | | | | | use new URL for psycogreen
| * | use new URL for psycogreenChristophe Jolif2020-05-281-1/+1
|/ /
* | Merge pull request #1110 from UpGado/patch-1Daniele Varrazzo2020-05-271-0/+1
|\ \ | |/ |/| Fix ctypes doc example AttributeError
| * Fix ctypes example AttributeErrorDio Gado2020-05-271-0/+1
|/
* Merge pull request #1103 from franciscouzo/patch-1Daniele Varrazzo2020-05-071-1/+1
|\ | | | | Fix typo
| * Fix typoFrancisco Couzo2020-05-071-1/+1
|/
* Merge branch 'mx-search'Daniele Varrazzo2020-05-062-3/+6
|\
| * Mention fixing mx search in news fileDaniele Varrazzo2020-05-061-0/+1
| | | | | | | | Close #996.
| * Fixed search of mxDateTime headersColin 't Hart2020-05-061-3/+5
|/ | | | | - Find mxDateTime.h automatically on path directories. - Prefer mxDateTime.h found in venv over one found in /usr/include.
* Mention python3-dev as possibly required dev package nameDaniele Varrazzo2020-05-052-3/+4
| | | | Close #1092.
* Mention CALL on stored procedures using transaction in autocommitDaniele Varrazzo2020-05-051-1/+4
| | | | | Close #1072 - I prefer to mention them where there is a discussion of the feature rather than in the method or const values section.
* Merge remote-tracking branch 'pombredanne/patch-1'Daniele Varrazzo2020-05-041-2/+2
|\
| * Improve doc wordingPhilippe Ombredanne2020-04-281-1/+1
| | | | | | Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
| * Fix typo and improve grammar in docPhilippe Ombredanne2020-04-281-1/+1
| | | | | | Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
* | Merge branch 'client-encoding-leak'Daniele Varrazzo2020-05-042-1/+11
|\ \
| * | Mention ticket #1101 closed in news fileDaniele Varrazzo2020-05-041-0/+7
| | |
| * | Fix memory leak in conn_set_client_encodingKevin Michel2020-05-041-1/+4
| |/ | | | | | | | | | | If the specified encoding is the same as the current one, the early exit did not release the clean_enc string allocated by clear_encoding_name.
* | Bump to next dev releaseDaniele Varrazzo2020-05-041-1/+1
|/
* Removed ZPL license (closes: #1087)Federico Di Gregorio2020-04-281-1/+0
|
* Releasing psycopg 2.8.52_8_5Daniele Varrazzo2020-04-061-1/+1
|
* Merge branch 'add-aix-support'Daniele Varrazzo2020-04-065-1/+110
|\
| * Mention AIX support in NEWS fileDaniele Varrazzo2020-04-061-0/+1
| |
| * fixup! feat: Add AIX supportAbdirahim Musse2020-03-121-1/+1
| |
| * feat: Add AIX supportAbdirahim Musse2020-03-054-1/+109
| |
* | Fix typo: occured → occurredJon Dufresne2020-04-061-1/+1
| |
* | Fixed copy() on DictRowfix-1073Daniele Varrazzo2020-04-063-1/+37
| | | | | | | | Close #1073.
* | Merge branch 'column-slice'Daniele Varrazzo2020-03-133-1/+34
|\ \
| * | Column objects can be slicedcolumn-sliceDaniele Varrazzo2020-03-113-1/+34
|/ / | | | | | | Close #1034.