summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm
Commit message (Expand)AuthorAgeFilesLines
* - Improved weakref identity map memory management to no longerMike Bayer2008-10-193-54/+51
* tiny tiny speed improvements....Mike Bayer2008-10-182-6/+8
* - "not equals" comparisons of simple many-to-one relationMike Bayer2008-10-181-23/+17
* Moved r5164's @lazy_property to @memoized_property, updated existing @memoize...Jason Kirtland2008-10-173-10/+6
* Cache polymorphic_iterator in UOWTask; substantial savings for polymorphism-h...Jason Kirtland2008-10-171-1/+5
* reduce cruft related to serializable loadersMike Bayer2008-10-121-31/+7
* a much easier way to ArgSingletonMike Bayer2008-10-121-14/+11
* Corrected docstring for Query.one. Fixes #1190.Michael Trier2008-10-081-2/+2
* - using contains_eager() against an alias combined with an overall query alia...Mike Bayer2008-10-041-9/+21
* - Adjustment to Session's post-flush accounting of newlyMike Bayer2008-10-031-11/+12
* - identity_map._mutable_attrs is a plain dict since we manage weakref removal...Mike Bayer2008-10-021-2/+2
* Issue a better error message when someone decides to meddle with the active t...Ants Aasma2008-09-301-2/+3
* Fixed session.transaction.commit() on a autocommit=False session not starting...Ants Aasma2008-09-301-7/+2
* - session.execute() will execute a Sequence object passed toMike Bayer2008-09-286-89/+113
* - Fixed up slices on Query (i.e. query[x:y]) to work properlyMike Bayer2008-09-281-8/+13
* Tidy.Jason Kirtland2008-09-281-3/+2
* - Fixed shared state bug interfering with ScopedSession.mapper'sJason Kirtland2008-09-271-15/+12
* Added query_cls= override to scoped_session's query_propertyJason Kirtland2008-09-271-3/+16
* - fixed RLock-related bug in mapper which could deadlockMike Bayer2008-09-251-19/+21
* random cleanupMike Bayer2008-09-223-49/+62
* Get a bit more speed into the new _sort_states function. It's probably possibleGaƫtan de Menten2008-09-193-30/+31
* - Fixed bug involving read/write relation()s thatMike Bayer2008-09-192-2/+2
* un-stupified insert/update/delete sortingMike Bayer2008-09-194-53/+18
* more failing casesMike Bayer2008-09-181-0/+3
* - "non-batch" mode in mapper(), a feature which allowsMike Bayer2008-09-182-1/+4
* - annual unitofwork cleanupMike Bayer2008-09-153-140/+106
* - Added scalar() and value() methods to Query, each return aMike Bayer2008-09-111-0/+5
* Note to self: save buffers before committing.Jason Kirtland2008-09-111-1/+13
* Added Query.scalar() sugar method, eases migration from old query.sum() metho...Jason Kirtland2008-09-111-0/+11
* reverted inheritance tweak which fails tests on non-sqliteMike Bayer2008-09-081-3/+5
* - Removed conflicting `contains()` operator fromMike Bayer2008-09-071-8/+0
* - query.order_by().get() silently drops the "ORDER BY" fromMike Bayer2008-09-061-14/+12
* - rearranged delete() so that the object is attached beforeMike Bayer2008-09-051-29/+37
* synchronize inherited does not need to be called for the full mapper hierarchyMike Bayer2008-09-052-10/+9
* allow the no_criterion call in _get() to copy the method name thorughMike Bayer2008-09-041-3/+3
* - Fixed bug whereby mapper couldn't initialize if a compositeMike Bayer2008-09-041-3/+3
* Make Query.update and Query.delete return the amount of rows matchedAnts Aasma2008-09-021-2/+10
* - column_property(), composite_property(), and relation() nowMike Bayer2008-09-026-14/+101
* - AttributeListener has been refined such that the eventMike Bayer2008-09-024-30/+55
* - Fixed custom instrumentation bug whereby get_instance_dict()Mike Bayer2008-09-021-3/+1
* recheck the dirty list if extensions are presentMike Bayer2008-08-301-4/+6
* - The "extension" argument to Session and others can nowMike Bayer2008-08-291-19/+20
* - add an example illustrating attribute event reception.Mike Bayer2008-08-292-6/+12
* check extensions each time; user-defined code will be appending to "extension...Mike Bayer2008-08-291-3/+3
* - starargs_as_list was not actually issuing SAPendingDeprecationWarning, fixedMike Bayer2008-08-285-19/+32
* - Fixed bug whereby deferred() columns with a group in conjunctionMike Bayer2008-08-281-2/+8
* - expire/fetch strategies are now default for Query.update/Query.delete.Ants Aasma2008-08-251-4/+64
* - Fixed bug whereby changing a primary key attribute on anMike Bayer2008-08-242-7/+12
* - Session.delete() adds the given object to the session ifMike Bayer2008-08-241-1/+3
* - logging scale-back; the echo_uow flag on Session is deprecated, and unit of...Mike Bayer2008-08-248-44/+37