| Commit message (Expand) | Author | Age | Files | Lines |
| * | - named_with_column becomes an attribute | Mike Bayer | 2007-11-25 | 13 | -172/+153 |
| * | - decruftify old visitors used by orm, convert to functions that | Mike Bayer | 2007-11-24 | 8 | -165/+78 |
| * | - all kinds of cleanup, tiny-to-slightly-significant speed improvements | Mike Bayer | 2007-11-24 | 17 | -206/+192 |
| * | more changes to merge(dont_load); since we now have a guarantee that | Mike Bayer | 2007-11-23 | 1 | -2/+8 |
| * | - some clarifications and fixes to merge(instance, dont_load=True). | Mike Bayer | 2007-11-23 | 1 | -1/+6 |
| * | - clarified the error message which occurs when you try to update() | Mike Bayer | 2007-11-20 | 2 | -31/+25 |
| * | - fixed endless loop issue when using lazy="dynamic" on both | Mike Bayer | 2007-11-19 | 1 | -2/+2 |
| * | - added op() operator to instrumented attributes; i.e. | Mike Bayer | 2007-11-18 | 2 | -1/+9 |
| * | - MSSQL anonymous labels for selection of functions made deterministic | Mike Bayer | 2007-11-18 | 1 | -6/+6 |
| * | repaired FB functions, [ticket:862] | Mike Bayer | 2007-11-18 | 1 | -3/+3 |
| * | Tests for mysql casts and a couple adjustments. | Jason Kirtland | 2007-11-18 | 1 | -6/+6 |
| * | - Clarified use of python's Decimal | Jason Kirtland | 2007-11-18 | 1 | -2/+2 |
| * | Migrated Connection.properties to Connection.info ('info' is the new standard... | Jason Kirtland | 2007-11-18 | 4 | -23/+32 |
| * | - added a little more checking for garbage-collection dereferences in | Mike Bayer | 2007-11-18 | 1 | -5/+11 |
| * | - PickleType will compare using `==` when set up with mutable=False, | Mike Bayer | 2007-11-18 | 1 | -1/+1 |
| * | test cases were not fully testing contains_eager() with regards to [ticket:77... | Mike Bayer | 2007-11-18 | 1 | -8/+5 |
| * | some wide zoomark ranges... | Mike Bayer | 2007-11-18 | 1 | -2/+2 |
| * | cut down a good deal of Join construction overhead | Mike Bayer | 2007-11-18 | 3 | -42/+44 |
| * | logging fixes | Mike Bayer | 2007-11-18 | 5 | -15/+25 |
| * | fixed both group-deferred attributes and expired attributes to not | Mike Bayer | 2007-11-18 | 2 | -7/+10 |
| * | - oracle will now reflect "DATE" as an OracleDateTime column, not | Mike Bayer | 2007-11-18 | 1 | -3/+16 |
| * | removed is_expired() method since the meaning of "expired" is per-attribute now | Mike Bayer | 2007-11-18 | 1 | -8/+0 |
| * | oops, print statements... | Mike Bayer | 2007-11-18 | 1 | -3/+0 |
| * | - session.refresh() and session.expire() now support an additional argument | Mike Bayer | 2007-11-18 | 7 | -306/+261 |
| * | fixed further issues with row translation [ticket:868] | Mike Bayer | 2007-11-15 | 1 | -1/+4 |
| * | Restored Python 2.3 compatibility (in IdentitySet) | Jason Kirtland | 2007-11-14 | 1 | -1/+14 |
| * | modified last commit; the eager loader only undefers columns from the primary... | Mike Bayer | 2007-11-14 | 1 | -2/+0 |
| * | - DeferredColumnLoader checks row for column, if present sends it to | Mike Bayer | 2007-11-14 | 5 | -6/+27 |
| * | - added having() method to Query, applies HAVING to the generated statement | Mike Bayer | 2007-11-13 | 1 | -2/+23 |
| * | More column type __repr__ corrections. | Jason Kirtland | 2007-11-13 | 2 | -2/+2 |
| * | AbstractType __repr__ robustification. | Jason Kirtland | 2007-11-13 | 1 | -47/+50 |
| * | Remove usage of deprecated in_ syntax | Paul Johnston | 2007-11-11 | 1 | -1/+1 |
| * | - Pool listeners preserved on pool.recreate() | Jason Kirtland | 2007-11-10 | 1 | -71/+71 |
| * | - anonymous column expressions are automatically labeled. | Mike Bayer | 2007-11-10 | 7 | -35/+58 |
| * | - mysql float types now do an end run around the base class and respect preci... | Jason Kirtland | 2007-11-09 | 1 | -14/+86 |
| * | more searching for equiv columns | Mike Bayer | 2007-11-09 | 1 | -3/+13 |
| * | - fixed error where Query.add_column() would not accept a class-bound | Mike Bayer | 2007-11-09 | 1 | -0/+7 |
| * | - query doesn't throw an error if you use distinct() and an order_by() | Mike Bayer | 2007-11-09 | 1 | -3/+6 |
| * | a tweak, still requiring test coverage, to add more "foreign key equivalents"... | Mike Bayer | 2007-11-09 | 1 | -6/+9 |
| * | more changes to traverse-and-clone; a particular element will only be cloned ... | Mike Bayer | 2007-11-08 | 3 | -25/+52 |
| * | - identified some cases where Alias needs to be cloned; but still cant clone | Mike Bayer | 2007-11-08 | 1 | -4/+13 |
| * | - fixed remainder of [ticket:853] | Mike Bayer | 2007-11-07 | 3 | -25/+16 |
| * | - <Engine|Connection>._execute_clauseelement becomes a public method | Mike Bayer | 2007-11-07 | 2 | -6/+9 |
| * | - fix to compiled bind parameters to not mistakenly populate None | Mike Bayer | 2007-11-07 | 1 | -3/+7 |
| * | fixed the previous TLTransaction checkin | Mike Bayer | 2007-11-07 | 1 | -0/+2 |
| * | - fixed the close() method on Transaction when using strategy='threadlocal' | Mike Bayer | 2007-11-07 | 2 | -2/+9 |
| * | adjusted "blank out primary key" rule to check for "allow_null_pks" on target... | Mike Bayer | 2007-11-07 | 1 | -1/+1 |
| * | - fixed very hard-to-reproduce issue where by the FROM clause of Query | Mike Bayer | 2007-11-07 | 1 | -13/+0 |
| * | fixed/added coverage for list extension; [ticket:855] | Mike Bayer | 2007-11-06 | 1 | -3/+3 |
| * | Added missing InternalError exception wrapper [ticket:854] | Jason Kirtland | 2007-11-06 | 1 | -2/+2 |