| Commit message (Expand) | Author | Age | Files | Lines |
* | workaround for #2838 here. still need to figure out why an ENUM test is sudd... | Mike Bayer | 2013-10-14 | 1 | -0/+7 |
* | - Fixed bug in default compiler plus those of postgresql, mysql, and | Mike Bayer | 2013-10-12 | 1 | -3/+4 |
* | Replace a big loop + dict lookup in Connection.execute() with a simple visitorpr/30 | Alex Gaynor | 2013-09-25 | 1 | -0/+3 |
* | - A rework to the way that "quoted" identifiers are handled, in that | Mike Bayer | 2013-08-27 | 1 | -53/+46 |
* | - The ``version_id_generator`` parameter of ``Mapper`` can now be specified | Mike Bayer | 2013-08-25 | 1 | -9/+50 |
* | added "system=True" to Column, so that we generally don't have to bother | Mike Bayer | 2013-08-25 | 1 | -0/+3 |
* | - The :class:`.CreateColumn` construct can be appled to a custom | Mike Bayer | 2013-08-24 | 1 | -3/+5 |
* | Fixed regression dating back to 0.7.9 whereby the name of a CTE might | Mike Bayer | 2013-08-18 | 1 | -1/+1 |
* | - A large refactoring of the ``sqlalchemy.sql`` package has reorganized | Mike Bayer | 2013-08-12 | 1 | -57/+159 |
* | - Fixed bug in common table expression system where if the CTE were | Mike Bayer | 2013-07-31 | 1 | -8/+14 |
* | - fix issue in join rewriting whereby we need to ensure the .key and .name | Mike Bayer | 2013-07-27 | 1 | -1/+3 |
* | Fixed bug where the expression system relied upon the ``str()`` | Mike Bayer | 2013-07-12 | 1 | -2/+6 |
* | - Added new method to the :func:`.insert` construct | Mike Bayer | 2013-07-05 | 1 | -1/+3 |
* | Fixed bug when using multi-table UPDATE where a supplemental | Mike Bayer | 2013-07-02 | 1 | -2/+2 |
* | - rework of correlation, continuing on #2668, #2746 | Mike Bayer | 2013-06-26 | 1 | -17/+73 |
* | The resolution of :class:`.ForeignKey` objects to their | Mike Bayer | 2013-06-23 | 1 | -1/+3 |
* | Merge branch 'ticket_2587' | Mike Bayer | 2013-06-04 | 1 | -12/+117 |
|\ |
|
| * | - add coverage for result map rewriting | Mike Bayer | 2013-06-04 | 1 | -1/+6 |
| * | - if the select() does not have use_labels on, then we just render | Mike Bayer | 2013-06-04 | 1 | -0/+1 |
| * | - support for a__b_dc, i.e. two levels of nesting | Mike Bayer | 2013-06-04 | 1 | -4/+19 |
| * | and this comment | Mike Bayer | 2013-06-04 | 1 | -0/+4 |
| * | rewriting scheme now works. | Mike Bayer | 2013-06-04 | 1 | -71/+43 |
| * | capture the really hard one in a test (hooray) | Mike Bayer | 2013-06-04 | 1 | -1/+1 |
| * | OK this is the broken version, need to think a lot more about this | Mike Bayer | 2013-06-03 | 1 | -1/+44 |
| * | working through tests.... | Mike Bayer | 2013-06-02 | 1 | -1/+13 |
| * | - figured out what the from_self() thing was about, part of query.statement, ... | Mike Bayer | 2013-06-02 | 1 | -7/+1 |
| * | getting things to join without subqueries, but some glitches in the compiler ... | Mike Bayer | 2013-06-02 | 1 | -3/+8 |
| * | implement join rewriting inside of visit_select(). Currently this is global ... | Mike Bayer | 2013-06-02 | 1 | -10/+64 |
* | | - add changelog/migration note | Mike Bayer | 2013-06-03 | 1 | -9/+9 |
* | | Merge branch 'master' into ticket_1068 | Mike Bayer | 2013-06-03 | 1 | -24/+13 |
|\ \
| |/ |
|
| * | fix an errant str check | Mike Bayer | 2013-05-26 | 1 | -1/+1 |
| * | a pass where we try to squash down as many list()/keys() combinations | Mike Bayer | 2013-05-26 | 1 | -2/+2 |
| * | - unicode literals need to just be handled differently if they have utf-8 | Mike Bayer | 2013-05-04 | 1 | -3/+3 |
| * | - endless isinstance(x, str)s.... | Mike Bayer | 2013-04-28 | 1 | -12/+10 |
| * | import of "sqlalchemy" and "sqlalchemy.orm" works. | Mike Bayer | 2013-04-27 | 1 | -13/+3 |
| * | - the raw 2to3 run | Mike Bayer | 2013-04-27 | 1 | -31/+32 |
* | | magic accessors to the rescue | Mike Bayer | 2013-05-27 | 1 | -7/+7 |
* | | still not locating more nested expressions, may need to match on name | Mike Bayer | 2013-05-27 | 1 | -11/+37 |
* | | attempt number one, doesn't detect though if the label in the order by is not... | Mike Bayer | 2013-05-27 | 1 | -3/+19 |
|/ |
|
* | A major fix to the way in which a select() object produces | Mike Bayer | 2013-04-11 | 1 | -16/+18 |
* | merge plus fix the test spelling too | Mike Bayer | 2013-03-18 | 1 | -1/+1 |
|\ |
|
| * | Fix typo. | Richard Mitchell | 2013-03-18 | 1 | -1/+1 |
* | | no need to use getattr() here | Mike Bayer | 2013-03-17 | 1 | -3/+3 |
|/ |
|
* | Changed behavior of Select.correlate() to ignore correlations to froms that d... | Luke Cyca | 2013-03-07 | 1 | -7/+2 |
* | #2629 | Mike Bayer | 2013-01-25 | 1 | -0/+5 |
* | :class:`.Index` now supports arbitrary SQL expressions and/or | Mike Bayer | 2013-01-16 | 1 | -15/+26 |
* | Tweaked the "REQUIRED" symbol used by the compiler to identify | Mike Bayer | 2013-01-08 | 1 | -5/+14 |
* | happy new year (see #2645) | Diana Clarke | 2013-01-01 | 1 | -1/+1 |
* | internally at least refer to multirow as "multivalues", to distinguish between | Mike Bayer | 2012-12-08 | 1 | -1/+1 |
* | - multivalued inserts, [ticket:2623] | Mike Bayer | 2012-12-08 | 1 | -70/+105 |