| Commit message (Expand) | Author | Age | Files | Lines |
| * | - CTE functionality has been expanded to support all DML, allowing | Mike Bayer | 2016-02-11 | 5 | -170/+272 |
| * | - A refinement to the logic which adds columns to the resulting SQL when | Mike Bayer | 2016-02-09 | 1 | -0/+22 |
| * | - oracle requires GLOBAL here | Mike Bayer | 2016-02-03 | 1 | -1/+1 |
| * | - add literal_binds for delete() statements in addition to insert()/update() | Mike Bayer | 2016-02-03 | 1 | -1/+1 |
| * | fix passing literal_binds flag through for update and insertpr/232 | Tim Tate | 2016-02-02 | 2 | -4/+5 |
| * | - add changelog and migration notes for new Enum features, | Mike Bayer | 2016-02-02 | 1 | -49/+126 |
| * | - Initial implementation of support for PEP-435 enumerated types | Alex Grönholm | 2016-02-02 | 1 | -5/+72 |
| * | - Fixed issue where inadvertent use of the Python ``__contains__`` | Mike Bayer | 2016-02-02 | 2 | -1/+5 |
| * | - happy new year | Mike Bayer | 2016-01-29 | 19 | -19/+19 |
| * | - unfortunately we need to match within join where col.key does not match | Mike Bayer | 2016-01-26 | 1 | -2/+1 |
| * | - rework ColumnCollection to no longer persist "all_col_set"; we don't | Mike Bayer | 2016-01-26 | 1 | -20/+9 |
| * | - The workaround for right-nested joins on SQLite, where they are rewritten | Mike Bayer | 2016-01-26 | 1 | -1/+1 |
| * | - generalize the verbiage on LargeBinary so that it doesn't | Mike Bayer | 2016-01-20 | 1 | -10/+5 |
| * | - calling str() on a core sql construct has been made more "friendly", | Mike Bayer | 2016-01-19 | 3 | -1/+37 |
| * | - A deep improvement to the recently added :meth:`.TextClause.columns` | Mike Bayer | 2016-01-14 | 3 | -17/+71 |
| * | - fix some old verbiage that refers to text() as an "implicit" thing | Mike Bayer | 2016-01-14 | 1 | -8/+7 |
| * | - convert keys to str for None not sortable against str on py3k | Mike Bayer | 2016-01-12 | 1 | -1/+1 |
| * | - reorganize schema_translate_map to be succinct and gain the performance | Mike Bayer | 2016-01-11 | 3 | -33/+68 |
| * | - Multi-tenancy schema translation for :class:`.Table` objects is added. | Mike Bayer | 2016-01-08 | 2 | -31/+81 |
| * | - fix docstrings | Mike Bayer | 2016-01-08 | 1 | -15/+16 |
| * | - long line | Mike Bayer | 2016-01-06 | 1 | -1/+2 |
| * | - Added :class:`.mysql.JSON` for MySQL 5.7. The JSON type provides | Mike Bayer | 2016-01-06 | 6 | -77/+318 |
| * | - Fixed 1.0 regression where the eager fetch of cursor.rowcount was | Mike Bayer | 2016-01-05 | 1 | -0/+6 |
| * | - Fixed an assertion that would raise somewhat inappropriately | Mike Bayer | 2015-12-23 | 1 | -3/+7 |
| * | some spelling fixes | jonathan vanasco | 2015-12-16 | 1 | -3/+3 |
| * | - a few tweaks to allow "server_defaults" to be a little more linkable; | Mike Bayer | 2015-12-14 | 1 | -2/+10 |
| * | - Fixed bug in :meth:`.Update.return_defaults` which would cause all | Mike Bayer | 2015-12-14 | 1 | -0/+1 |
| * | - Fixed issue within the :meth:`.Insert.from_select` construct whereby | Mike Bayer | 2015-12-09 | 1 | -2/+3 |
| * | - Fixed bug where CREATE TABLE with a no-column table, but a constraint | Mike Bayer | 2015-12-01 | 1 | -1/+1 |
| * | Merge remote-tracking branch 'origin/pr/216' | Mike Bayer | 2015-11-30 | 1 | -2/+2 |
| |\ |
|
| | * | - Postgres: Do not prefix table with schema in: "FOR UPDATE of <table>"pr/216 | Diana Clarke | 2015-11-24 | 1 | -2/+2 |
| * | | - Added support for parameter-ordered SET clauses in an UPDATE | Mike Bayer | 2015-11-28 | 3 | -62/+114 |
| |/ |
|
| * | - fix missing argument in TypeDecorator.copy(), fixes #3584, references #2919 | Mike Bayer | 2015-11-13 | 1 | -2/+2 |
| * | - correct the commit from ref #3582 to refer to the correct sub-element | Mike Bayer | 2015-11-11 | 1 | -1/+1 |
| * | - Fixed bug where the "single table inheritance" criteria would be | Mike Bayer | 2015-11-11 | 1 | -0/+15 |
| * | Merge branch 'pr204' | Mike Bayer | 2015-10-29 | 1 | -2/+3 |
| |\ |
|
| | * | - convert wrap_callable() to a general purpose update_wrapper-like | Mike Bayer | 2015-10-29 | 1 | -2/+2 |
| | * | - wrap ColumnDefault empty arg callables like functools.wraps, setting __name...pr/204 | Martin J. Hsu | 2015-10-15 | 1 | -2/+3 |
| * | | - add a JSON warning for coerce_compared_value | Mike Bayer | 2015-10-28 | 1 | -0/+20 |
| * | | - open up autoincrement for columns that have a default; autoinc is usually | Mike Bayer | 2015-10-08 | 1 | -37/+25 |
| * | | - The system by which a :class:`.Column` considers itself to be an | Mike Bayer | 2015-10-07 | 3 | -42/+199 |
| |/ |
|
| * | - Added a new type-level modifier :meth:`.TypeEngine.evaluates_none` | Mike Bayer | 2015-09-19 | 1 | -4/+61 |
| * | - The :func:`.type_coerce` construct is now a fully fledged Core | Mike Bayer | 2015-09-16 | 4 | -63/+109 |
| * | - Fixed regression in 1.0-released default-processor for multi-VALUES | Mike Bayer | 2015-08-31 | 1 | -0/+1 |
| * | - The :class:`.TypeDecorator` type extender will now work in conjunction | Mike Bayer | 2015-08-27 | 1 | -1/+14 |
| * | - add a postgresql-specific form of array_agg() that injects the | Mike Bayer | 2015-08-27 | 1 | -2/+9 |
| * | - Added support for "set-aggregate" functions of the formticket_3516 | Mike Bayer | 2015-08-26 | 5 | -24/+296 |
| * | - Added support for the SQL-standard function :class:`.array_agg`, | Mike Bayer | 2015-08-26 | 1 | -0/+22 |
| * | - build out a new base type for Array, as well as new any/all operators | Mike Bayer | 2015-08-25 | 8 | -7/+405 |
| * | - repair the inspection hook in sqltypes to not be fooled | Mike Bayer | 2015-08-22 | 1 | -1/+6 |