| Commit message (Expand) | Author | Age | Files | Lines |
| * | Support for the mysql+oursql dialect. Thank you Taavi Burns. | Michael Trier | 2010-02-25 | 1 | -1/+1 |
| * | - A major fix in query.join(), when the "on" clause is an | Mike Bayer | 2010-02-24 | 1 | -0/+26 |
| * | - session.merge() will not expire existing scalar attributes | Mike Bayer | 2010-02-23 | 1 | -3/+93 |
| * | - The "allow_null_pks" flag is now called "allow_partial_pks", | Mike Bayer | 2010-02-22 | 2 | -3/+57 |
| * | Found another float / Decimal issue that needs to be changed to be consistent... | Michael Trier | 2010-02-22 | 1 | -1/+1 |
| * | Python 3 changes the round to return a Decimal not a float. | Michael Trier | 2010-02-22 | 1 | -2/+2 |
| * | clean up some skips, added skip for sqlite + python2 | Mike Bayer | 2010-02-21 | 1 | -0/+2 |
| * | more py3k fixes | Mike Bayer | 2010-02-20 | 1 | -4/+10 |
| * | - Fixed cascade bug in many-to-one relation() when attribute | Mike Bayer | 2010-02-16 | 1 | -4/+40 |
| * | get tests to pass for OurSQL | Mike Bayer | 2010-02-15 | 1 | -4/+8 |
| * | Gave the "state" internals a good solid | Mike Bayer | 2010-02-14 | 2 | -13/+150 |
| * | - query.one() no longer applies LIMIT to the query, this to | Mike Bayer | 2010-02-14 | 1 | -4/+27 |
| * | - reduced a bit of overhead in attribute expiration, particularly | Mike Bayer | 2010-02-13 | 2 | -11/+11 |
| * | Fixed bug in session.merge() blocking dict-like collections from merging. | Jason Kirtland | 2010-02-11 | 1 | -1/+17 |
| * | - Query called in the context of an expression will render | Mike Bayer | 2010-02-08 | 1 | -5/+28 |
| * | - Now uses sqlalchemy.orm.exc.DetachedInstanceError when an | Mike Bayer | 2010-02-07 | 2 | -7/+7 |
| * | - Slight improvement to the fix for [ticket:1362] to not issue | Mike Bayer | 2010-02-05 | 1 | -1/+36 |
| * | - Fixed bug in session.rollback() which involved not removing | Mike Bayer | 2010-02-05 | 1 | -0/+44 |
| * | - Added math negation operator support, -x. | Mike Bayer | 2010-02-05 | 1 | -0/+4 |
| * | - Primary key values can now be changed on a joined-table inheritance | Mike Bayer | 2010-02-02 | 3 | -4/+126 |
| * | - added a failing-so-far test for #1671 | Mike Bayer | 2010-02-01 | 1 | -0/+100 |
| * | - the "save-update" cascade will now cascade the pending *removed* | Mike Bayer | 2010-01-30 | 1 | -2/+41 |
| * | remove my comment. still wish this could be done in a cleaner way tho | Mike Bayer | 2010-01-25 | 1 | -10/+0 |
| * | revert r6686 and adjust the stacklevel of test_notsane_warning's SAWarning so | Philip Jenvey | 2010-01-25 | 1 | -4/+9 |
| * | query | Mike Bayer | 2010-01-24 | 1 | -0/+10 |
| * | test_notsane_working needs to run first for dialects that don't | Philip Jenvey | 2010-01-24 | 1 | -20/+23 |
| * | disable SAWarning exceptions when supports_sane_rowcount isn't supported so | Philip Jenvey | 2010-01-23 | 1 | -0/+12 |
| * | - types.Binary is renamed to types.LargeBinary, it only | Mike Bayer | 2010-01-23 | 2 | -2/+2 |
| * | - query.select_from() also accepts mapped classes, aliased() | Mike Bayer | 2010-01-20 | 1 | -0/+27 |
| * | lessons learned unpickling from an 0.5 cache | Mike Bayer | 2010-01-19 | 1 | -1/+54 |
| * | - mega example cleanup | Mike Bayer | 2010-01-19 | 1 | -82/+1 |
| * | - raise error when unpickling non-mapped state, [ticket:1610] | Mike Bayer | 2010-01-17 | 1 | -2/+19 |
| * | statement_options -> execution_options | Mike Bayer | 2010-01-17 | 1 | -11/+11 |
| * | - added "statement_options()" to Query, to so options can be | Mike Bayer | 2010-01-16 | 1 | -0/+27 |
| * | restore common_parent logic in correspoinds_to, fixes [ticket:1657] | Mike Bayer | 2010-01-15 | 1 | -0/+6 |
| * | - replace the tip of the path info with the subclass mapper being used. | Mike Bayer | 2010-01-13 | 1 | -0/+26 |
| * | NamedTuple is pickleable ! no really with all the protocols too ! | Mike Bayer | 2010-01-13 | 2 | -13/+37 |
| * | - merge() will not issue a needless merge of attributes if the | Mike Bayer | 2010-01-10 | 2 | -3/+90 |
| * | - Session.merge() is performance optimized, using half the | Mike Bayer | 2010-01-07 | 2 | -1/+40 |
| * | remove needless check_modified() | Mike Bayer | 2010-01-07 | 1 | -2/+2 |
| * | - Fixed a column arithmetic bug that affected column | Mike Bayer | 2010-01-03 | 1 | -0/+15 |
| * | Fix invalid behavior of Query.update and Query.delete with evaluate strategy ... | Ants Aasma | 2009-12-31 | 1 | -0/+20 |
| * | add the uselist=False / single row assertion from [ticket:1643] for lazy load... | Mike Bayer | 2009-12-19 | 2 | -2/+14 |
| * | - added _with_options() to Connection. not publicizing this yet. | Mike Bayer | 2009-12-18 | 1 | -1/+3 |
| * | - The version_id_col feature on mapper() will raise a warning when | Mike Bayer | 2009-12-18 | 1 | -1/+25 |
| * | - relation() with uselist=False will emit a warning when | Mike Bayer | 2009-12-18 | 1 | -1/+12 |
| * | - Session.merge() now properly overwrites a many-to-one or | Mike Bayer | 2009-12-14 | 1 | -0/+22 |
| * | - merge r6549 of 0.5 branch | Mike Bayer | 2009-12-08 | 1 | -0/+4 |
| * | - Session.execute() now locates table- and | Mike Bayer | 2009-12-08 | 1 | -22/+47 |
| * | - The "use get" behavior of many-to-one relations, i.e. that a | Mike Bayer | 2009-12-08 | 1 | -1/+51 |