| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
- standardize type tests on type affinity matches
|
|
|
|
|
|
| |
get correct state from nose cmdline
- fix mapper logging [ticket:1620]
|
|
|
|
|
|
|
| |
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]
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
| |
adds a __nonzero__ to _BinaryExpression to avoid faulty comparisons during hash
collisions (which only occur on Jython)
fixes #1547
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
original patch from Victor Ng
fixes #1505
|
|
|
|
|
| |
Weak/StrongIdentityMap.add()
[ticket:1506]
|
|
|
|
| |
[ticket:1373]
|
| |
|
| |
|
|
|
|
| |
o avoid returning tests on oracle+zxjdbc for now
|
| |
|
|
See README.unittests for information on how to run
the tests. [ticket:970]
|