| Commit message (Expand) | Author | Age | Files | Lines |
| * | Adds documentation to Query.slice().pr/247 | jfinkels | 2016-03-13 | 1 | -3/+28 |
| * | - not sure why MySQL DROP DBs fail but we can't just ignore the error | Mike Bayer | 2016-03-03 | 1 | -12/+3 |
| * | Raise exception when we have multiple values with an unknown column. Fixes #3... | Athena Yao | 2016-03-02 | 1 | -1/+1 |
| * | - unfortunately calling upon "_label" here makes it unclear if | Mike Bayer | 2016-02-26 | 1 | -2/+4 |
| * | - Anonymous labeling is applied to a :attr:`.func` construct that is | Mike Bayer | 2016-02-26 | 1 | -1/+1 |
| * | - An improvement to the workings of :meth:`.Query.correlate` such | Mike Bayer | 2016-02-25 | 1 | -5/+8 |
| * | - additional adjustment to the fix made in 8ad968f33100baeb3b13c7e0b724b6b79a... | Mike Bayer | 2016-02-21 | 1 | -1/+4 |
| * | - Fixed bug in "to_list" conversion where a single bytes object | Mike Bayer | 2016-02-21 | 2 | -2/+6 |
| * | - reworked the way the "select_wraps_for" expression is | Mike Bayer | 2016-02-20 | 4 | -13/+9 |
| * | - further edit the unnest() example to suit PG's esoteric requirements | Mike Bayer | 2016-02-18 | 1 | -4/+6 |
| * | - Fixed bug which would cause an eagerly loaded many-to-one attribute | Mike Bayer | 2016-02-17 | 1 | -7/+13 |
| * | - handle parameter sets that aren't correctly formed, so that | Mike Bayer | 2016-02-17 | 3 | -2/+6 |
| * | - do the trailing comma logic of tuple repr() exactly | Mike Bayer | 2016-02-17 | 1 | -4/+7 |
| * | - All string formatting of bound parameter sets and result rows for | Mike Bayer | 2016-02-17 | 2 | -13/+110 |
| * | - add changelog, migration, version flags and some extra notes | Mike Bayer | 2016-02-16 | 1 | -1/+41 |
| * | Merge remote-tracking branch 'origin/pr/236' | Mike Bayer | 2016-02-16 | 1 | -0/+144 |
| |\ |
|
| | * | Add `sqlalchemy.ext.mutable.MutableSet`pr/236 | Jeong YunWon | 2016-02-13 | 1 | -0/+65 |
| | * | Add `sqlalchemy.ext.mutable.MutableList` | Jeong YunWon | 2016-02-13 | 1 | -0/+79 |
| * | | - use same colname as the alias we give to the PG function | Mike Bayer | 2016-02-16 | 1 | -2/+2 |
| |/ |
|
| * | - Fixed bug in :meth:`.Session.merge` where an object with a composite | Mike Bayer | 2016-02-11 | 1 | -2/+3 |
| * | - CTE functionality has been expanded to support all DML, allowing | Mike Bayer | 2016-02-11 | 7 | -173/+275 |
| * | - add more documentation to MutableDict explaining | Mike Bayer | 2016-02-10 | 1 | -0/+12 |
| * | - don't drop the ts1/ts2 databases without seeing the primary DB, | Mike Bayer | 2016-02-09 | 1 | -6/+21 |
| * | - A refinement to the logic which adds columns to the resulting SQL when | Mike Bayer | 2016-02-09 | 2 | -15/+33 |
| * | - Testing reveals that we have *no* weak references to any cx_Oracle connecti... | Mike Bayer | 2016-02-08 | 1 | -9/+32 |
| * | - use config-based test schema | Mike Bayer | 2016-02-08 | 1 | -5/+5 |
| * | - attempt a different style of session kill | Mike Bayer | 2016-02-08 | 1 | -1/+2 |
| * | - fully hyperlink the docstring for make_transient | Mike Bayer | 2016-02-08 | 2 | -12/+48 |
| * | - additional fixes to get oracle + multiprocess to be reliable | Mike Bayer | 2016-02-08 | 2 | -0/+11 |
| * | - py3k fix for enum feature | Mike Bayer | 2016-02-08 | 1 | -1/+4 |
| * | - add a session killer for oracle provisioning | Mike Bayer | 2016-02-04 | 1 | -0/+5 |
| * | - add an impl for Enum to Oracle which has subclassing requirements | Mike Bayer | 2016-02-04 | 1 | -0/+13 |
| * | - more oracle fixes | Mike Bayer | 2016-02-03 | 2 | -5/+10 |
| * | - oracle requires GLOBAL here | Mike Bayer | 2016-02-03 | 2 | -2/+2 |
| * | - add multi-database provisioning for oracle | Mike Bayer | 2016-02-03 | 1 | -0/+29 |
| * | - 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 |
| * | Merge branch 'master' of https://bitbucket.org/carlrivers/sqlalchemy | Mike Bayer | 2016-02-02 | 1 | -2/+1 |
| |\ |
|
| | * | Merged zzzeek/sqlalchemy into master | Carlos Rivas | 2016-01-26 | 58 | -2090/+3371 |
| | |\ |
|
| | * | | Removed entry that causes AttributeError (#3621) - Oracle zxJDBC fails with A... | Carlos Rivas | 2016-01-23 | 1 | -2/+1 |
| * | | | - add changelog and migration notes for new Enum features, | Mike Bayer | 2016-02-02 | 2 | -74/+143 |
| * | | | - 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 |
| * | | | - put a retry in for PG database provisioning as it locks | Mike Bayer | 2016-01-29 | 1 | -1/+14 |
| * | | | - The ``sqlalchemy.dialects.postgres`` module, long deprecated, is | Mike Bayer | 2016-01-29 | 2 | -18/+9 |
| * | | | - happy new year | Mike Bayer | 2016-01-29 | 174 | -174/+174 |
| * | | | - use a StaticPool for componentreflectiontest to ensure | Mike Bayer | 2016-01-28 | 1 | -7/+16 |
| * | | | - use schema argument correctly when we are dropping for a schema | Mike Bayer | 2016-01-28 | 1 | -1/+1 |
| * | | | - revert the change first made in a6fe4dc, as we are now generalizing | Mike Bayer | 2016-01-28 | 2 | -14/+9 |
| * | | | - reinstate "dont set up integer index in keymap if we're on cexts", | Mike Bayer | 2016-01-27 | 2 | -6/+11 |