summaryrefslogtreecommitdiff
path: root/test/orm
Commit message (Expand)AuthorAgeFilesLines
* Support for the mysql+oursql dialect. Thank you Taavi Burns.Michael Trier2010-02-251-1/+1
* - A major fix in query.join(), when the "on" clause is anMike Bayer2010-02-241-0/+26
* - session.merge() will not expire existing scalar attributesMike Bayer2010-02-231-3/+93
* - The "allow_null_pks" flag is now called "allow_partial_pks",Mike Bayer2010-02-222-3/+57
* Found another float / Decimal issue that needs to be changed to be consistent...Michael Trier2010-02-221-1/+1
* Python 3 changes the round to return a Decimal not a float.Michael Trier2010-02-221-2/+2
* clean up some skips, added skip for sqlite + python2Mike Bayer2010-02-211-0/+2
* more py3k fixesMike Bayer2010-02-201-4/+10
* - Fixed cascade bug in many-to-one relation() when attributeMike Bayer2010-02-161-4/+40
* get tests to pass for OurSQLMike Bayer2010-02-151-4/+8
* Gave the "state" internals a good solidMike Bayer2010-02-142-13/+150
* - query.one() no longer applies LIMIT to the query, this toMike Bayer2010-02-141-4/+27
* - reduced a bit of overhead in attribute expiration, particularlyMike Bayer2010-02-132-11/+11
* Fixed bug in session.merge() blocking dict-like collections from merging.Jason Kirtland2010-02-111-1/+17
* - Query called in the context of an expression will renderMike Bayer2010-02-081-5/+28
* - Now uses sqlalchemy.orm.exc.DetachedInstanceError when anMike Bayer2010-02-072-7/+7
* - Slight improvement to the fix for [ticket:1362] to not issueMike Bayer2010-02-051-1/+36
* - Fixed bug in session.rollback() which involved not removingMike Bayer2010-02-051-0/+44
* - Added math negation operator support, -x.Mike Bayer2010-02-051-0/+4
* - Primary key values can now be changed on a joined-table inheritanceMike Bayer2010-02-023-4/+126
* - added a failing-so-far test for #1671Mike Bayer2010-02-011-0/+100
* - the "save-update" cascade will now cascade the pending *removed*Mike Bayer2010-01-301-2/+41
* remove my comment. still wish this could be done in a cleaner way thoMike Bayer2010-01-251-10/+0
* revert r6686 and adjust the stacklevel of test_notsane_warning's SAWarning soPhilip Jenvey2010-01-251-4/+9
* queryMike Bayer2010-01-241-0/+10
* test_notsane_working needs to run first for dialects that don'tPhilip Jenvey2010-01-241-20/+23
* disable SAWarning exceptions when supports_sane_rowcount isn't supported soPhilip Jenvey2010-01-231-0/+12
* - types.Binary is renamed to types.LargeBinary, it onlyMike Bayer2010-01-232-2/+2
* - query.select_from() also accepts mapped classes, aliased()Mike Bayer2010-01-201-0/+27
* lessons learned unpickling from an 0.5 cacheMike Bayer2010-01-191-1/+54
* - mega example cleanupMike Bayer2010-01-191-82/+1
* - raise error when unpickling non-mapped state, [ticket:1610]Mike Bayer2010-01-171-2/+19
* statement_options -> execution_optionsMike Bayer2010-01-171-11/+11
* - added "statement_options()" to Query, to so options can beMike Bayer2010-01-161-0/+27
* restore common_parent logic in correspoinds_to, fixes [ticket:1657]Mike Bayer2010-01-151-0/+6
* - replace the tip of the path info with the subclass mapper being used.Mike Bayer2010-01-131-0/+26
* NamedTuple is pickleable ! no really with all the protocols too !Mike Bayer2010-01-132-13/+37
* - merge() will not issue a needless merge of attributes if theMike Bayer2010-01-102-3/+90
* - Session.merge() is performance optimized, using half theMike Bayer2010-01-072-1/+40
* remove needless check_modified()Mike Bayer2010-01-071-2/+2
* - Fixed a column arithmetic bug that affected columnMike Bayer2010-01-031-0/+15
* Fix invalid behavior of Query.update and Query.delete with evaluate strategy ...Ants Aasma2009-12-311-0/+20
* add the uselist=False / single row assertion from [ticket:1643] for lazy load...Mike Bayer2009-12-192-2/+14
* - added _with_options() to Connection. not publicizing this yet.Mike Bayer2009-12-181-1/+3
* - The version_id_col feature on mapper() will raise a warning whenMike Bayer2009-12-181-1/+25
* - relation() with uselist=False will emit a warning whenMike Bayer2009-12-181-1/+12
* - Session.merge() now properly overwrites a many-to-one orMike Bayer2009-12-141-0/+22
* - merge r6549 of 0.5 branchMike Bayer2009-12-081-0/+4
* - Session.execute() now locates table- andMike Bayer2009-12-081-22/+47
* - The "use get" behavior of many-to-one relations, i.e. that aMike Bayer2009-12-081-1/+51