| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | a missing cursor.close() here caused a *huge* amount of weird locking issues... | Mike Bayer | 2013-08-02 | 1 | -7/+10 |
| * | Added a new attribute :attr:`.Session.info` to :class:`.Session`; | Mike Bayer | 2013-08-02 | 1 | -2/+42 |
| * | - assorted fixes raised by pypy 2.1beta2, but all of which are good | Mike Bayer | 2013-08-01 | 3 | -3/+29 |
| * | Updates to MySQL reserved words for versions 5.5, 5.6, courtesy | Mike Bayer | 2013-07-31 | 1 | -0/+10 |
| * | fix missing comma | Mike Bayer | 2013-07-31 | 1 | -1/+1 |
| * | - update ORM event docs to include that you can listen on an unmapped base, | Mike Bayer | 2013-07-31 | 1 | -29/+32 |
| * | - Fixed bug in common table expression system where if the CTE were | Mike Bayer | 2013-07-31 | 2 | -12/+18 |
| * | - this collection can be None on cleanup, so check for that | Mike Bayer | 2013-07-27 | 1 | -1/+1 |
| * | - fix issue in join rewriting whereby we need to ensure the .key and .name | Mike Bayer | 2013-07-27 | 1 | -1/+3 |
| * | - The C extensions are ported to Python 3 and will build under | Mike Bayer | 2013-07-26 | 3 | -45/+352 |
| * | - add event.contains() function to the event package, returns True | Mike Bayer | 2013-07-26 | 4 | -18/+24 |
| * | - Removal of event listeners is now implemented. The feature is | Mike Bayer | 2013-07-26 | 10 | -790/+1097 |
| * | - The mechanism by which attribute events pass along an | Mike Bayer | 2013-07-26 | 3 | -52/+123 |
| * | tpo | Mike Bayer | 2013-07-20 | 1 | -9/+9 |
| * | - Improved the examples in ``examples/generic_associations``, including | Mike Bayer | 2013-07-19 | 2 | -1/+41 |
| * | Minor hybrid extension documentation updatepr/18 | David Beitey | 2013-07-19 | 1 | -2/+2 |
| * | Fixed bug in ORM-level event registration where the "raw" or | Mike Bayer | 2013-07-18 | 1 | -5/+8 |
| * | Fixed bug in :class:`.CheckConstraint` DDL where the "quote" flag from a | Mike Bayer | 2013-07-17 | 1 | -1/+3 |
| * | wording about supported dialects for Query.yield_perpr/17 | Domen Kožar | 2013-07-14 | 1 | -6/+6 |
| * | A performance fix related to the usage of the :func:`.defer` option | Mike Bayer | 2013-07-13 | 4 | -32/+38 |
| * | doc fix | Mike Bayer | 2013-07-12 | 1 | -1/+1 |
| * | The newly added SQLite DATETIME arguments storage_format and | Mike Bayer | 2013-07-12 | 1 | -0/+6 |
| * | - use inline=True for the insert..select here so it works on oracle | Mike Bayer | 2013-07-12 | 2 | -2/+13 |
| * | Fixed bug where the expression system relied upon the ``str()`` | Mike Bayer | 2013-07-12 | 4 | -5/+35 |
| * | don't split the regexps for chop_traceback() | Mike Bayer | 2013-07-12 | 1 | -4/+2 |
| * | Dialect.initialize() is not called a second time if an :class:`.Engine` | Mike Bayer | 2013-07-11 | 3 | -1/+16 |
| * | - we dont actually need this unicode cast, on py3k + linux it seems the | Mike Bayer | 2013-07-09 | 2 | -8/+2 |
| * | - create a new system where we can decorate an event method | Mike Bayer | 2013-07-08 | 8 | -44/+309 |
| * | remove undoc-members from query docstring [ticket:2774] | Mike Bayer | 2013-07-07 | 1 | -0/+7 |
| * | - Added new method to the :func:`.insert` construct | Mike Bayer | 2013-07-05 | 5 | -3/+92 |
| * | Fixed bug whereby attribute history functions would fail | Mike Bayer | 2013-07-04 | 1 | -2/+2 |
| * | Fixed bug where :class:`.QueuePool` would lose the correct | Mike Bayer | 2013-07-04 | 1 | -1/+6 |
| * | add a float exclusion to help oursql build 100% | Mike Bayer | 2013-07-02 | 2 | -0/+10 |
| * | Fixed bug when using multi-table UPDATE where a supplemental | Mike Bayer | 2013-07-02 | 1 | -2/+2 |
| * | Added :class:`.BIGINT` to the list of type names that can be | Mike Bayer | 2013-07-02 | 1 | -2/+4 |
| * | ORM descriptors such as hybrid properties can now be referenced | Mike Bayer | 2013-07-02 | 1 | -10/+12 |
| * | - refactor pool a bit so that intent between ConnectionRecord/ConnectionFairy... | Mike Bayer | 2013-07-02 | 5 | -110/+245 |
| * | Added new flag ``retaining=False`` to the kinterbasdb and fdb dialects. | Mike Bayer | 2013-06-30 | 3 | -46/+83 |
| * | - replace most explicitly-named test objects called "Mock..." with | Mike Bayer | 2013-06-30 | 4 | -1/+19 |
| * | - additional fix for [ticket:2750] where on an update, we make sure the | Mike Bayer | 2013-06-30 | 1 | -1/+2 |
| * | A warning is emitted when trying to flush an object of an inherited | Mike Bayer | 2013-06-30 | 2 | -1/+35 |
| * | The behavior of :func:`.extract` has been simplified on the | Mike Bayer | 2013-06-28 | 1 | -22/+0 |
| * | improve the close handling here so that we don't double-close a connection; | Mike Bayer | 2013-06-28 | 1 | -3/+5 |
| * | Type lookup when reflecting the Firebird types LONG and | Mike Bayer | 2013-06-28 | 1 | -7/+6 |
| * | Fixed bug in HSTORE type where keys/values that contained | Mike Bayer | 2013-06-28 | 1 | -3/+3 |
| * | - fix a regression caused by #2587, where query.join() would apply an | Mike Bayer | 2013-06-27 | 1 | -1/+1 |
| * | Merge branch 'ticket_2746' | Mike Bayer | 2013-06-26 | 3 | -66/+186 |
| |\ |
|
| | * | - rework of correlation, continuing on #2668, #2746 | Mike Bayer | 2013-06-26 | 3 | -66/+186 |
| * | | Fix indexes reflection in PostgreSQLpr/13 | Roman Podolyaka | 2013-06-26 | 2 | -15/+24 |
| |/ |
|
| * | docs | Mike Bayer | 2013-06-23 | 2 | -9/+20 |