| Commit message (Expand) | Author | Age | Files | Lines |
| * | - Added func.min(), func.max(), func.sum() as "generic functions", | Mike Bayer | 2008-09-08 | 1 | -5/+14 |
| * | - Dropped 0.3-compatibility for user defined types | Mike Bayer | 2008-09-07 | 2 | -35/+15 |
| * | - query.order_by().get() silently drops the "ORDER BY" from | Mike Bayer | 2008-09-06 | 1 | -0/+6 |
| * | - rearranged delete() so that the object is attached before | Mike Bayer | 2008-09-05 | 1 | -2/+6 |
| * | - Fixed exception throw which would occur when string-based | Mike Bayer | 2008-09-04 | 1 | -2/+22 |
| * | - Fixed bug whereby mapper couldn't initialize if a composite | Mike Bayer | 2008-09-04 | 1 | -0/+16 |
| * | correct extra space in SQL assertions | Mike Bayer | 2008-09-03 | 1 | -5/+5 |
| * | - limit/offset no longer uses ROW NUMBER OVER to limit rows, | Mike Bayer | 2008-09-03 | 2 | -40/+89 |
| * | Make Query.update and Query.delete return the amount of rows matched | Ants Aasma | 2008-09-02 | 1 | -0/+17 |
| * | - column_property(), composite_property(), and relation() now | Mike Bayer | 2008-09-02 | 1 | -1/+43 |
| * | - AttributeListener has been refined such that the event | Mike Bayer | 2008-09-02 | 2 | -1/+47 |
| * | - Fixed custom instrumentation bug whereby get_instance_dict() | Mike Bayer | 2008-09-02 | 1 | -0/+15 |
| * | - broke pool tests out into QueuePoolTest/SingletonThreadPoolTest | Mike Bayer | 2008-09-01 | 1 | -263/+290 |
| * | recheck the dirty list if extensions are present | Mike Bayer | 2008-08-30 | 1 | -1/+30 |
| * | - starargs_as_list was not actually issuing SAPendingDeprecationWarning, fixed | Mike Bayer | 2008-08-28 | 1 | -16/+3 |
| * | - Fixed bug whereby deferred() columns with a group in conjunction | Mike Bayer | 2008-08-28 | 1 | -0/+11 |
| * | - expire/fetch strategies are now default for Query.update/Query.delete. | Ants Aasma | 2008-08-25 | 1 | -5/+5 |
| * | - Fixed bug whereby changing a primary key attribute on an | Mike Bayer | 2008-08-24 | 2 | -2/+57 |
| * | - Session.delete() adds the given object to the session if | Mike Bayer | 2008-08-24 | 1 | -0/+4 |
| * | - Added MSMediumInteger type [ticket:1146]. | Mike Bayer | 2008-08-24 | 1 | -0/+15 |
| * | - logging scale-back; the echo_uow flag on Session is deprecated, and unit of... | Mike Bayer | 2008-08-24 | 1 | -1/+1 |
| * | - The 'length' argument to all Numeric types has been renamed | Mike Bayer | 2008-08-24 | 4 | -12/+40 |
| * | - fixed tearDown to reverse sorted table list | Mike Bayer | 2008-08-23 | 1 | -1/+1 |
| * | - Another old-style mixin fix and an explicit mapper() test for it. | Jason Kirtland | 2008-08-21 | 1 | -2/+20 |
| * | - fixed a bug in declarative test which was looking for old version of history | Mike Bayer | 2008-08-19 | 8 | -12/+12 |
| * | attributes.get_history now reports some zero-length slots as the empty tuple ... | Jason Kirtland | 2008-08-18 | 3 | -78/+78 |
| * | - The before_flush() hook on SessionExtension takes place | Mike Bayer | 2008-08-17 | 1 | -0/+66 |
| * | temporary check for unmapped class, until [ticket:1142] is resolved | Mike Bayer | 2008-08-17 | 1 | -0/+11 |
| * | - fixed primary key update for many-to-many collections | Mike Bayer | 2008-08-16 | 1 | -0/+10 |
| * | - Mock engines take on the .name of their dialect. [ticket:1123] | Jason Kirtland | 2008-08-15 | 1 | -2/+2 |
| * | - Ignore old-style classes when building inheritance graphs. [ticket:1078] | Jason Kirtland | 2008-08-15 | 1 | -0/+35 |
| * | - Renamed on_reconstitute to @reconstructor and reconstruct_instance | Jason Kirtland | 2008-08-15 | 2 | -37/+80 |
| * | adjust counts for 2.4 based on buildbot observation, remove 2.3 counts | Mike Bayer | 2008-08-13 | 1 | -3/+3 |
| * | - with 2.3 support dropped, | Mike Bayer | 2008-08-13 | 2 | -11/+5 |
| * | added import for interfaces, otherwise tsa.interfaces is undef if the test is... | Mike Bayer | 2008-08-13 | 1 | -1/+2 |
| * | - joins along a relation() from a mapped | Mike Bayer | 2008-08-12 | 1 | -0/+116 |
| * | - Improved the behavior of query.join() | Mike Bayer | 2008-08-12 | 1 | -0/+19 |
| * | - When generating __init__, use a copy of the func_defaults, not a repr of them. | Jason Kirtland | 2008-08-11 | 1 | -0/+34 |
| * | - The composite() property type now supports | Mike Bayer | 2008-08-11 | 1 | -3/+138 |
| * | merged r5018 from 0.4 branch, but using contextual_connect() (will fix in 0.4... | Mike Bayer | 2008-08-10 | 2 | -2/+21 |
| * | - cleaned up the attributes scan for reconstitute hooks | Mike Bayer | 2008-08-08 | 1 | -1/+1 |
| * | added unit tests for [ticket:1024] | Mike Bayer | 2008-08-08 | 1 | -0/+14 |
| * | - Fixed @on_reconsitute hook for subclasses | Mike Bayer | 2008-08-08 | 1 | -0/+15 |
| * | - Improved the determination of the FROM clause | Mike Bayer | 2008-08-06 | 2 | -2/+30 |
| * | - Temporarily rolled back the "ORDER BY" enhancement | Mike Bayer | 2008-08-06 | 1 | -47/+1 |
| * | - The RowTuple object returned by Query(*cols) now | Mike Bayer | 2008-08-05 | 3 | -0/+24 |
| * | - fixed endless loop bug which could occur | Mike Bayer | 2008-08-04 | 4 | -6/+69 |
| * | - compiler visit_label() checks a flag "within_order_by" and will render its ... | Mike Bayer | 2008-08-03 | 2 | -0/+81 |
| * | descriptive error message raised when string-based relation() expressions ina... | Mike Bayer | 2008-08-03 | 1 | -1/+8 |
| * | - renamed autoexpire to expire_on_commit | Mike Bayer | 2008-08-03 | 3 | -3/+71 |