summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'master' into ticket_1068Mike Bayer2013-06-033-9/+9
|\ \
| * | - fdb is now official, [ticket:2504]Mike Bayer2013-06-033-9/+9
| | | | | | | | | | | | | | | - restore the rollback cleanup handler, pg8000 is mostly obsolete as a dialect and the firebird drivers need it
* | | Merge branch 'master' into ticket_1068Mike Bayer2013-06-0384-1091/+1246
|\ \ \ | |/ /
| * | - some tweaks to try to help out mssql+pyodbc support a bit, py3k is reallyMike Bayer2013-06-032-12/+20
| |/ | | | | | | not happening too well (I need to stick with linux + freetds 0.91, I know)
| * - blow away context._attributesMike Bayer2013-06-024-40/+44
| | | | | | | | | | - to account for query._attributes/context.attributes, just pass the attributes dict directly to the PathRegistry methods
| * Fixed a regression caused by [ticket:2682] whereby theMike Bayer2013-05-311-0/+6
| | | | | | | | | | | | | | evaluation invoked by :meth:`.Query.update` and :meth:`.Query.delete` would hit upon unsupported ``True`` and ``False`` symbols which now appear due to the usage of ``IS``. [ticket:2737]
| * The "auto-aliasing" behavior of the :class:`.Query.select_from`Mike Bayer2013-05-302-12/+131
| | | | | | | | | | | | method has been turned off. The specific behavior is now availble via a new method :class:`.Query.select_entity_from`. [ticket:2736]
| * - implement armin's awesome metaclass adaptor, can drop the refs to MetaBase.Mike Bayer2013-05-304-13/+26
| |
| * - the distinct hash code logic here is entirely obsolete as you canMike Bayer2013-05-301-11/+0
| | | | | | | | | | do eq_() on columnelements now with a meaningful bool; jython is entirely a non-starter right now in any case as 2.7 doesn't support common accessors like __defaults__
| * - version 0.9Mike Bayer2013-05-291-1/+1
| | | | | | | | - changelog, migration doc
| * Merge branch 'rel_0_9'Mike Bayer2013-05-2983-1026/+1018
| |\ | | | | | | | | | | | | | | | | | | Conflicts: lib/sqlalchemy/dialects/postgresql/hstore.py lib/sqlalchemy/util/__init__.py lib/sqlalchemy/util/compat.py
| | * keep the contract for Properties as returning lists for keys, values, items.Mike Bayer2013-05-291-3/+3
| | | | | | | | | | | | It's not the same as a dictionary as __iter__ does the values
| | * - repair for py3kMike Bayer2013-05-291-1/+6
| | | | | | | | | | | | - fix test
| | * Unicode support for psycopg2 native hstore implementationDmitry Mugtasimov2013-05-291-1/+2
| | |
| | * hstores are text, and in py3k they seem to be implcitly unicode. soMike Bayer2013-05-291-10/+26
| | | | | | | | | | | | | | | add unicode encoding for py2k for the non-native hstore, pullreq for native psycopg2 support coming....
| | * - run the whole test suite with the "debugging" ordered dict on,Mike Bayer2013-05-271-8/+19
| | | | | | | | | | | | find some more failures
| | * - additional oracle fixes. cx_oracle under py3k is complaining about tuples ↵Mike Bayer2013-05-271-0/+5
| | | | | | | | | | | | | | | | | | | | | to executemany(), so just unconditionally turn this into a list - this one test segfaults only on py3k + cx_oracle
| | * - oracle py3k fixMike Bayer2013-05-271-1/+3
| | |
| | * - fix a dict while iterate mutationMike Bayer2013-05-272-1/+12
| | | | | | | | | | | | | | | - illustrate how OrderedDict can catch these, but commented out to save function overhead
| | * fix test_execute w c extensionsMike Bayer2013-05-261-1/+2
| | |
| | * clean up types.pyMike Bayer2013-05-261-58/+41
| | |
| | * clean up some of this collection stuffMike Bayer2013-05-263-36/+40
| | |
| | * fix an errant str checkMike Bayer2013-05-261-1/+1
| | |
| | * get profile 1a back down to 5100 calls, that one was 10% greater due to thisMike Bayer2013-05-261-3/+3
| | |
| | * - zoomark testsMike Bayer2013-05-261-1/+1
| | | | | | | | | | | | - rewrite all profiles, we'll review the diffs to see if anything is too far out
| | * a pass where we try to squash down as many list()/keys() combinationsMike Bayer2013-05-2621-57/+55
| | | | | | | | | | | | as possible
| | * fix the unicode test suiteMike Bayer2013-05-261-7/+8
| | |
| | * do a sweep of some obvious 3kismsMike Bayer2013-05-267-51/+57
| | |
| | * a few more oracle fixesMike Bayer2013-05-261-11/+11
| | |
| | * cleanup for oracleMike Bayer2013-05-262-60/+57
| | |
| | * Merge branch 'master' into rel_0_9Mike Bayer2013-05-261-1/+1
| | |\
| | * | - add a test specific to sqlite testing cursor.description encoding (shouldMike Bayer2013-05-262-1/+4
| | | | | | | | | | | | | | | | | | | | probably be one in test_query or test_unicode...) - fix up test_unitofwork
| | * | postgresql testsMike Bayer2013-05-262-21/+19
| | | |
| | * | mysql testsMike Bayer2013-05-261-5/+1
| | | |
| | * | Merge branch 'master' into rel_0_9Mike Bayer2013-05-262-3/+3
| | |\ \
| | * \ \ Merge branch 'rel_0_9' of bitbucket.org:zzzeek/sqlalchemy into rel_0_9Mike Bayer2013-05-261-1/+1
| | |\ \ \
| | | * | | - fixing AbstractConcreteBase import in docstring, 0.9diana2013-05-261-1/+1
| | | | | | | | | | | | | | | | | | branch, [ticket:2717]
| | * | | | sqlite testsMike Bayer2013-05-262-4/+2
| | | | | |
| | * | | | repair py3kisms in key ORM modulesMike Bayer2013-05-263-22/+22
| | | | | |
| | * | | | extension testsMike Bayer2013-05-261-9/+7
| | | | | |
| | * | | | fix serializer tests. something is wrong with non-C pickle but for some ↵Mike Bayer2013-05-263-21/+19
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | reason py3k's pickle seems to be OK? not sure why that is, as this is all related to http://bugs.python.org/issue998998
| | * | | merge defaultMike Bayer2013-05-231-24/+22
| | |\ \ \
| | * \ \ \ merge defaultMike Bayer2013-05-151-0/+6
| | |\ \ \ \
| | * \ \ \ \ merge defaultMike Bayer2013-05-131-1/+8
| | |\ \ \ \ \
| | * \ \ \ \ \ merge defaultMike Bayer2013-05-101-20/+53
| | |\ \ \ \ \ \
| | * | | | | | | most of ORM passing...Mike Bayer2013-05-0410-48/+44
| | | | | | | | |
| | * | | | | | | baseMike Bayer2013-05-041-3/+3
| | | | | | | | |
| | * | | | | | | that's all of engineMike Bayer2013-05-042-2/+12
| | | | | | | | |
| | * | | | | | | test_execute up for sqlite, pg, oursql, mysql 2.7 + 3.3Mike Bayer2013-05-041-1/+1
| | | | | | | | |
| | * | | | | | | - OK we have -w sql passing for: sqlite, postgresql, oursql 2.7 + 3.3, ↵Mike Bayer2013-05-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysqldb 2.7