summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | 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
| | * | | | | | | - unicode literals need to just be handled differently if they have utf-8Mike Bayer2013-05-044-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | encoded in them vs. unicode escaping. not worth figuring out how to combine these right now
| | * | | | | | | use logging to output exc_info hereMike Bayer2013-05-041-11/+5
| | | | | | | | |
| | * | | | | | | merge defaultMike Bayer2013-04-301-3/+4
| | |\ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ merge defaultMike Bayer2013-04-292-2/+3
| | |\ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ merge defaultMike Bayer2013-04-291-26/+15
| | |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | | postgresql dialect testsMike Bayer2013-04-284-29/+28
| | | | | | | | | | | |
| | * | | | | | | | | | - test_types, test_compiler, with sqlite at leastMike Bayer2013-04-283-20/+18
| | | | | | | | | | | |
| | * | | | | | | | | | - endless isinstance(x, str)s....Mike Bayer2013-04-2811-183/+212
| | | | | | | | | | | |
| | * | | | | | | | | | resultMike Bayer2013-04-281-2/+2
| | | | | | | | | | | |
| | * | | | | | | | | | cleanupMike Bayer2013-04-271-45/+21
| | | | | | | | | | | |
| | * | | | | | | | | | import of "sqlalchemy" and "sqlalchemy.orm" works.Mike Bayer2013-04-279-58/+34
| | | | | | | | | | | |
| | * | | | | | | | | | plugging awayMike Bayer2013-04-2715-147/+107
| | | | | | | | | | | |
| | * | | | | | | | | | work through dialectsMike Bayer2013-04-276-42/+38
| | | | | | | | | | | |
| | * | | | | | | | | | - the raw 2to3 runMike Bayer2013-04-2787-939/+980
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - went through examples/ and cleaned out excess list() calls
| * | | | | | | | | | | add the py2k symbol from the 0.9 branch to support the hstore changeMike Bayer2013-05-293-1/+3
| | | | | | | | | | | |
| * | | | | | | | | | | - 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....
| * | | | | | | | | | | - move an import stuck in the middle here...Mike Bayer2013-05-281-1/+1
| | |_|_|_|_|_|_|_|_|/ | |/| | | | | | | | |
* | | | | | | | | | | magic accessors to the rescueMike Bayer2013-05-272-7/+20
| | | | | | | | | | |
* | | | | | | | | | | still not locating more nested expressions, may need to match on nameMike Bayer2013-05-273-11/+121
| | | | | | | | | | |
* | | | | | | | | | | attempt number one, doesn't detect though if the label in the order by is ↵Mike Bayer2013-05-272-3/+21
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | not directly present there.
* | | | | | | | | | fix this testMike Bayer2013-05-261-1/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Merge pull request #1 from cjw296/small-fixesmike bayer2013-05-262-3/+3
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Small fixes
| * | | | | | | | | Show the conflicting column in the warning!Chris Withers2013-05-261-2/+2
| | | | | | | | | |
| * | | | | | | | | fix incorrect method nameChris Withers2013-05-261-1/+1
| | |_|_|_|_|_|_|/ | |/| | | | | | |
* | | | | | | | | - fixing AbstractConcreteBase import in docstring, [ticket:2717]Diana Clarke2013-05-261-1/+1
|/ / / / / / / /
* | | | | | | | Fixed a bug where the routine to detect the correct kwargsMike Bayer2013-05-231-24/+22
| |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | being sent to :func:`.create_engine` would fail in some cases, such as with the Sybase dialect. [ticket:2732]
* | | | | | | Regression from this ticket caused the unsupported keywordMike Bayer2013-05-151-0/+6
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | "true" to render, added logic to convert this to 1/0 for SQL server. [ticket:2682]
* | | | | | Fixed a regression from 0.7 caused by this ticket, whichMike Bayer2013-05-131-1/+8
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | made the check for recursion overflow in self-referential eager joining too loose, missing a particular circumstance where a subclass had lazy="joined" or "subquery" configured and the load was a "with_polymorphic" against the base. [ticket:2481]
* | | | | - moderinzed the docs for the foreign_keys parameter a bit,Mike Bayer2013-05-101-20/+53
| |_|_|/ |/| | | | | | | | | | | [ticket:2725]
* | | | - Fixed a regression from 0.7 where the contextmanager featureMike Bayer2013-04-301-3/+4
| |_|/ |/| | | | | | | | | | | | | | | | | of :meth:`.Session.begin_nested` would fail to correctly roll back the transaction when a flush error occurred, instead raising its own exception while leaving the session still pending a rollback. [ticket:2718]
* | | bumpMike Bayer2013-04-291-1/+1
| | |
* | | Updated mysqlconnector dialect to check for disconnect basedMike Bayer2013-04-291-1/+2
| |/ |/| | | | | | | on the apparent string message sent in the exception; tested against mysqlconnector 1.0.9.