| Commit message (Expand) | Author | Age | Files | Lines |
| * | fix passing literal_binds flag through for update and insertpr/232 | Tim Tate | 2016-02-02 | 1 | -0/+16 |
| * | - add changelog and migration notes for new Enum features, | Mike Bayer | 2016-02-02 | 1 | -27/+149 |
| * | - Initial implementation of support for PEP-435 enumerated types | Alex Grönholm | 2016-02-02 | 1 | -29/+56 |
| * | - Fixed issue where inadvertent use of the Python ``__contains__`` | Mike Bayer | 2016-02-02 | 1 | -1/+23 |
| * | - rework ColumnCollection to no longer persist "all_col_set"; we don't | Mike Bayer | 2016-01-26 | 1 | -0/+19 |
| * | - The workaround for right-nested joins on SQLite, where they are rewritten | Mike Bayer | 2016-01-26 | 1 | -0/+5 |
| * | - native unicode expectations are too difficult to maintain | Mike Bayer | 2016-01-23 | 1 | -60/+0 |
| * | - add a forwards-test here as well | Mike Bayer | 2016-01-21 | 1 | -0/+4 |
| * | - documenation updates to clarify specific SQLite versions | Mike Bayer | 2016-01-21 | 1 | -10/+20 |
| * | - calling str() on a core sql construct has been made more "friendly", | Mike Bayer | 2016-01-19 | 3 | -9/+79 |
| * | - A deep improvement to the recently added :meth:`.TextClause.columns` | Mike Bayer | 2016-01-14 | 2 | -36/+197 |
| * | - Multi-tenancy schema translation for :class:`.Table` objects is added. | Mike Bayer | 2016-01-08 | 1 | -0/+127 |
| * | - Added :class:`.mysql.JSON` for MySQL 5.7. The JSON type provides | Mike Bayer | 2016-01-06 | 3 | -44/+222 |
| * | - Fixed 1.0 regression where the eager fetch of cursor.rowcount was | Mike Bayer | 2016-01-05 | 1 | -0/+17 |
| * | - Fixed an assertion that would raise somewhat inappropriately | Mike Bayer | 2015-12-23 | 1 | -0/+7 |
| * | - add some more oracle skips | Mike Bayer | 2015-12-14 | 1 | -0/+2 |
| * | - Fixed bug in :meth:`.Update.return_defaults` which would cause all | Mike Bayer | 2015-12-14 | 1 | -0/+25 |
| * | - Fixed issue within the :meth:`.Insert.from_select` construct whereby | Mike Bayer | 2015-12-09 | 1 | -0/+26 |
| * | - Fixed bug where CREATE TABLE with a no-column table, but a constraint | Mike Bayer | 2015-12-01 | 1 | -1/+25 |
| * | - Added support for parameter-ordered SET clauses in an UPDATE | Mike Bayer | 2015-11-28 | 1 | -0/+124 |
| * | - fix missing argument in TypeDecorator.copy(), fixes #3584, references #2919 | Mike Bayer | 2015-11-13 | 1 | -1/+15 |
| * | Merge branch 'pr204' | Mike Bayer | 2015-10-29 | 1 | -0/+1 |
| |\ |
|
| | * | - convert wrap_callable() to a general purpose update_wrapper-like | Mike Bayer | 2015-10-29 | 1 | -60/+0 |
| | * | - wrap ColumnDefault empty arg callables like functools.wraps, setting __name...pr/204 | Martin J. Hsu | 2015-10-15 | 1 | -0/+61 |
| * | | - this was supposed to be client-side SQL default not server side | Mike Bayer | 2015-10-09 | 1 | -1/+1 |
| * | | - open up autoincrement for columns that have a default; autoinc is usually | Mike Bayer | 2015-10-08 | 2 | -12/+24 |
| * | | - The system by which a :class:`.Column` considers itself to be an | Mike Bayer | 2015-10-07 | 4 | -3/+240 |
| * | | - fix bool test | Mike Bayer | 2015-09-27 | 1 | -1/+1 |
| * | | - break out critical aspects of test_query into their own tests | Mike Bayer | 2015-09-27 | 3 | -1416/+1585 |
| |/ |
|
| * | - The :func:`.type_coerce` construct is now a fully fledged Core | Mike Bayer | 2015-09-16 | 2 | -2/+68 |
| * | - Fixed regression in 1.0-released default-processor for multi-VALUES | Mike Bayer | 2015-08-31 | 2 | -16/+52 |
| * | - The :class:`.TypeDecorator` type extender will now work in conjunction | Mike Bayer | 2015-08-27 | 1 | -8/+2 |
| * | - Added support for "set-aggregate" functions of the formticket_3516 | Mike Bayer | 2015-08-26 | 2 | -17/+112 |
| * | - Added support for the SQL-standard function :class:`.array_agg`, | Mike Bayer | 2015-08-26 | 1 | -2/+10 |
| * | - build out a new base type for Array, as well as new any/all operators | Mike Bayer | 2015-08-25 | 2 | -5/+220 |
| * | - repair the inspection hook in sqltypes to not be fooled | Mike Bayer | 2015-08-22 | 1 | -1/+9 |
| * | - Added new checks for the common error case of passing mapped classes | Mike Bayer | 2015-08-22 | 1 | -2/+23 |
| * | - as the Concatenable mixin was changed to support calling down to | Mike Bayer | 2015-08-18 | 1 | -1/+55 |
| * | - merge of ticket_3499 indexed access branch | Mike Bayer | 2015-08-17 | 2 | -2/+212 |
| * | - The behavior of the :func:`.union` construct and related constructs | Mike Bayer | 2015-08-12 | 2 | -4/+83 |
| * | - changelog for #3459, fixes #3459 | Mike Bayer | 2015-07-19 | 2 | -7/+2 |
| * | Merge branch 'bb_issue_3459' of https://bitbucket.org/xflr6/sqlalchemy into pr56 | Mike Bayer | 2015-07-19 | 1 | -0/+7 |
| |\ |
|
| | * | add ClauseElement.cast() shortcut-method | Sebastian Bank | 2015-06-19 | 1 | -0/+7 |
| * | | - Fixed regression where new methods on :class:`.ResultProxy` used | Mike Bayer | 2015-07-19 | 1 | -2/+10 |
| * | | - pg8000 very annoyingly complaining here, use total literal | Mike Bayer | 2015-07-19 | 1 | -1/+2 |
| * | | - Fixed regression where :meth:`.ResultProxy.keys` would return | Mike Bayer | 2015-07-19 | 1 | -5/+94 |
| * | | - Fixed bug where coersion of literal ``True`` or ``False`` constant | Mike Bayer | 2015-07-19 | 1 | -0/+58 |
| * | | - Fixed potential issue where a custom subclass | Mike Bayer | 2015-07-19 | 1 | -2/+14 |
| * | | - fix these two tests | Mike Bayer | 2015-07-17 | 1 | -2/+2 |
| * | | Merge remote-tracking branch 'origin/pr/188' into pr188 | Mike Bayer | 2015-07-17 | 1 | -0/+3 |
| |\ \ |
|