| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed bug in polymorphic SQL generation where multiple joined-inheritance | Mike Bayer | 2013-06-15 | 1 | -5/+10 |
* | dial back the default "flatness" a bit, it will be there for joinedload and q... | Mike Bayer | 2013-06-06 | 1 | -1/+1 |
* | shrugs | Mike Bayer | 2013-06-05 | 1 | -1/+6 |
* | a test for what's breaking, plus a non-working fix for it... | Mike Bayer | 2013-06-05 | 1 | -0/+3 |
* | - improve overlapping selectables, apply to both query and relationship | Mike Bayer | 2013-06-04 | 1 | -17/+15 |
* | rewriting scheme now works. | Mike Bayer | 2013-06-04 | 1 | -6/+3 |
* | OK this is the broken version, need to think a lot more about this | Mike Bayer | 2013-06-03 | 1 | -2/+2 |
* | - pulling out more aliases, sort of | Mike Bayer | 2013-06-03 | 1 | -4/+9 |
* | working through tests.... | Mike Bayer | 2013-06-02 | 1 | -5/+21 |
* | - figured out what the from_self() thing was about, part of query.statement, ... | Mike Bayer | 2013-06-02 | 1 | -0/+2 |
* | getting things to join without subqueries, but some glitches in the compiler ... | Mike Bayer | 2013-06-02 | 1 | -8/+8 |
* | - blow away context._attributes | Mike Bayer | 2013-06-02 | 1 | -1/+1 |
* | The "auto-aliasing" behavior of the :class:`.Query.select_from` | Mike Bayer | 2013-05-30 | 1 | -11/+130 |
* | repair py3kisms in key ORM modules | Mike Bayer | 2013-05-26 | 1 | -11/+11 |
* | most of ORM passing... | Mike Bayer | 2013-05-04 | 1 | -6/+1 |
* | - the raw 2to3 run | Mike Bayer | 2013-04-27 | 1 | -21/+22 |
* | - further cleanup. in particular, the left clause is never None. But we still | Mike Bayer | 2013-04-25 | 1 | -24/+12 |
* | - attempt to replace the whole idea of "join_to_left" with a more | Mike Bayer | 2013-04-24 | 1 | -26/+2 |
* | adding convenience method exists() to Query (see # 2673) | Diana Clarke | 2013-03-29 | 1 | -0/+20 |
* | Fixed bug whereby :meth:`.Query.yield_per` would set the execution | Mike Bayer | 2013-02-08 | 1 | -2/+2 |
* | happy new year (see #2645) | Diana Clarke | 2013-01-01 | 1 | -1/+1 |
* | The :meth:`.Query.select_from` method can now be used with a | Mike Bayer | 2012-12-13 | 1 | -18/+18 |
* | - refactor of pathing mechanics, to address #2614, #2617 | Mike Bayer | 2012-12-01 | 1 | -12/+25 |
* | just a pep8 pass of lib/sqlalchemy/orm/ | Diana Clarke | 2012-11-19 | 1 | -87/+84 |
* | should be 'where' not 'filter' #2546 | Diana Clarke | 2012-11-18 | 1 | -1/+1 |
* | - more docs | Mike Bayer | 2012-10-26 | 1 | -2/+2 |
* | - add class_ to AliasedInsp | Mike Bayer | 2012-10-26 | 1 | -1/+0 |
* | - some naming changes on PropComparator, Comparator: | Mike Bayer | 2012-10-25 | 1 | -2/+3 |
* | - [feature] The Query can now load entity/scalar-mixed | Mike Bayer | 2012-10-15 | 1 | -3/+11 |
* | - allow a __clause_element__() to be passed to query.filter() also | Mike Bayer | 2012-10-15 | 1 | -8/+1 |
* | - add coverage for merge_result() [ticket:2588] | Mike Bayer | 2012-10-11 | 1 | -2/+2 |
* | - [feature] Added reduce_columns() method | Mike Bayer | 2012-07-28 | 1 | -7/+19 |
* | - [feature] ORM entities can be passed | Mike Bayer | 2012-07-23 | 1 | -4/+9 |
* | - a big renaming of all the _Underscore classes to have | Mike Bayer | 2012-07-17 | 1 | -8/+8 |
* | - totally remove _entity_info and _extended_entity_info, replacing all usage | Mike Bayer | 2012-07-16 | 1 | -17/+31 |
* | - express most of the orm.util functions in terms of the inspection system | Mike Bayer | 2012-07-16 | 1 | -235/+234 |
* | - fix this import | Mike Bayer | 2012-06-23 | 1 | -1/+1 |
* | - move all of orm to use absolute imports | Mike Bayer | 2012-06-23 | 1 | -235/+62 |
* | - simplify setup_entity and related calls | Mike Bayer | 2012-06-23 | 1 | -132/+142 |
* | - [feature] The of_type() construct on attributes | Mike Bayer | 2012-06-20 | 1 | -36/+32 |
* | Add some `Sphinx` paragraph level versions informations markups, | Mike Bayer | 2012-06-08 | 1 | -31/+35 |
* | doc update regarding with_lockmode, [ticket:2440] | Mike Bayer | 2012-05-04 | 1 | -1/+1 |
* | Add some documentation sugar for ``having`` criterion. | Priit Laes | 2012-01-13 | 1 | -3/+15 |
* | - refactor query.update() and query.delete() to use a pure | Mike Bayer | 2012-04-29 | 1 | -288/+108 |
* | - [feature] Calling rollback() within a | Mike Bayer | 2012-04-24 | 1 | -13/+21 |
* | - [bug] column.label(None) now produces an | Mike Bayer | 2012-04-24 | 1 | -2/+3 |
* | - [feature] New standalone function with_polymorphic() | Mike Bayer | 2012-04-23 | 1 | -78/+75 |
* | - re-merge + CHANGES | Mike Bayer | 2012-04-23 | 1 | -2/+0 |
|\ |
|
| * | make auto-correlation the same for Query & select() | Diana Clarke | 2012-04-02 | 1 | -2/+0 |
* | | - merge attribute flag overhaul for [ticket:2358] | Mike Bayer | 2012-04-23 | 1 | -3/+3 |
|/ |
|