summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test
Commit message (Collapse)AuthorAgeFilesLines
...
* - implement dynamic type_affinity for Oracle.NUMBERMike Bayer2010-01-171-6/+3
| | | | - standardize type tests on type affinity matches
* - added a refresh logger step to the nose plugin so that SQLA class loggers ↵Mike Bayer2010-01-031-2/+4
| | | | | | get correct state from nose cmdline - fix mapper logging [ticket:1620]
* - INTERVAL supports an optional "precision" argumentMike Bayer2009-11-011-1/+2
| | | | | | | corresponding to the argument that PG accepts. - Added support for reflecting the INTERVAL YEAR TO MONTH and INTERVAL DAY TO SECOND syntaxes of the INTERVAL type. [ticket:460]
* oracle test fixesMike Bayer2009-10-261-1/+1
|
* - The psycopg2 dialect now uses psycopg2's "unicode extension"Mike Bayer2009-10-261-0/+8
| | | | | | | | | | | | | | | | | | on all new connections, which allows all String/Text/etc. types to skip the need to post-process bytestrings into unicode (an expensive step due to its volume). Other dialects which return unicode natively (pg8000, zxjdbc) also skip unicode post-processing. - String/Text/Unicode types now skip the unicode() check on each result column value if the dialect has detected the DBAPI as returning Python unicode objects natively. This check is issued on first connect using "SELECT CAST 'some text' AS VARCHAR(10)" or equivalent, then checking if the returned object is a Python unicode. This allows vast performance increases for native-unicode DBAPIs, including pysqlite/sqlite3, psycopg2, and pg8000.
* added a test for #1085Mike Bayer2009-09-301-2/+6
|
* merge from branches/clauseelement-nonzeroPhilip Jenvey2009-09-241-1/+1
| | | | | | adds a __nonzero__ to _BinaryExpression to avoid faulty comparisons during hash collisions (which only occur on Jython) fixes #1547
* - query.join() has been reworked to provide more consistentMike Bayer2009-09-181-3/+12
| | | | | | | | behavior and more flexibility (includes [ticket:1537]) - query.select_from() accepts multiple clauses to produce multiple comma separated entries within the FROM clause. Useful when selecting from multiple-homed join() clauses.
* mssql+zxjdbc supportPhilip Jenvey2009-09-111-1/+3
| | | | | original patch from Victor Ng fixes #1505
* - Fixed incorrect exception raise inMike Bayer2009-08-311-2/+5
| | | | | Weak/StrongIdentityMap.add() [ticket:1506]
* - Fixed column.copy() to copy defaults and onupdates.Mike Bayer2009-08-281-7/+1
| | | | [ticket:1373]
* oracle+zxjdbc returning supportPhilip Jenvey2009-08-182-1/+3
|
* python3k fixesMike Bayer2009-08-091-3/+18
|
* o oracle+zxjdbc type handling additionsPhilip Jenvey2009-08-091-0/+1
| | | | o avoid returning tests on oracle+zxjdbc for now
* merge 0.6 series to trunk.Mike Bayer2009-08-069-119/+298
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-1011-0/+2182
See README.unittests for information on how to run the tests. [ticket:970]