summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into ticket_2501ticket_2501Mike Bayer2014-01-21174-20654/+26288
|\
| * - update docs for Numeric/Float, in particular warn against using mismatchedMike Bayer2014-01-211-32/+41
| * - Fixed the multiple-table "UPDATE..FROM" construct, only usable onMike Bayer2014-01-202-33/+85
| * - further refine this so that the ordering of columns is maintained asMike Bayer2014-01-202-16/+18
| * - simplify the mechanics of PrimaryKeyConstraint with regards to reflection;Mike Bayer2014-01-202-23/+120
| * - repair signature for base get_unique_constraints() methodMike Bayer2014-01-202-1/+2
| * - alter behavior such that dialect_kwargs is still immutable, butMike Bayer2014-01-191-10/+5
| * - some test fixesMike Bayer2014-01-192-28/+27
| * - implement kwarg validation and type system for dialect-specificMike Bayer2014-01-1814-80/+293
| * - changelog for pullreq:11Mike Bayer2014-01-181-1/+1
| * Merge branch 'patch-msql-pkc-clustered' of bitbucket.org:dharland/sqlalchemy ...Mike Bayer2014-01-182-8/+73
| |\
| | * Bug Fix: Stop generating bad sql if an empty UniqueConstraint() is givendonkopotamus2014-01-172-0/+4
| | * Support mssql_clustered option on UniqueConstraint (plus docs and test)donkopotamus2014-01-171-4/+29
| | * Remove support for mssql_clustered on Tabledonkopotamus2014-01-171-15/+5
| | * Support mssql_clustered option in mssql dialect for both Table and PrimaryKey...donkopotamus2014-01-141-8/+54
| * | - rework Oracle to no longer do its own unicode conversion; this has been obs...Mike Bayer2014-01-174-17/+67
| * | Merge pull request #58 from kstark/patch-1mike bayer2014-01-141-1/+1
| |\ \
| | * | Fix TypeError for class_mapper called w/ iterablepr/58Kyle Stark2014-01-131-1/+1
| * | | - _cursor_execute() will close the cursor on error; oracle doesn't allow doub...Mike Bayer2014-01-132-14/+14
| * | | - Fixed a bug involving the new flattened JOIN structures whichMike Bayer2014-01-131-4/+3
| | |/ | |/|
| * | - The MySQL CAST compilation now takes into account aspects of a stringMike Bayer2014-01-134-31/+81
| |/
| * revert r2775c95b1ee30831216cc5 which was mostly an inadvertent commit, except...Mike Bayer2014-01-132-42/+21
| * - continue with [ticket:2907] and further clean up how we set upMike Bayer2014-01-132-18/+46
| * - :class:`.Connection` now associates a newMike Bayer2014-01-122-20/+51
| * - add new event PoolEvents.invalidate(). allows interception of invalidationMike Bayer2014-01-123-54/+208
| * - bump up how many args for "named arg style" to fourMike Bayer2014-01-121-1/+1
| * expose SchemaVisitor in the compatibility layerpr/57Sean Dague2014-01-111-0/+4
| * new changelogMike Bayer2014-01-112-21/+42
| * - fix some function mismatch in profilingMike Bayer2014-01-091-6/+3
| * 0.9.2Mike Bayer2014-01-091-1/+1
| * Use PyMODINIT_FUNCpr/55cgohlke2014-01-081-1/+1
| * Use PyMODINIT_FUNCcgohlke2014-01-081-1/+1
| * Use PyMODINIT_FUNCcgohlke2014-01-081-1/+1
| * - happy new yearMike Bayer2014-01-05165-167/+167
| * 0.9.1Mike Bayer2014-01-051-1/+1
| * Merge branch 'automap'Mike Bayer2014-01-057-26/+935
| |\
| | * - many-to-many supportMike Bayer2014-01-051-66/+786
| | * - fix some docstring stuffMike Bayer2014-01-053-19/+62
| | * - conjunctions like and_() and or_() can now accept generators as arguments.Mike Bayer2014-01-053-1/+10
| | * - basic functionality.Mike Bayer2014-01-041-23/+30
| | * - The :paramref:`.Table.extend_existing` and :paramref:`.Table.autoload_replace`Mike Bayer2014-01-041-6/+23
| | * - hypothetical "automap" feature, would extend DeferredReflection to create c...Mike Bayer2014-01-031-0/+113
| * | - Fixed regression where using a ``functools.partial()`` with the eventMike Bayer2014-01-042-3/+10
| |/
| * - Fixed an extremely unlikely memory issue where when usingMike Bayer2014-01-032-19/+63
| * Merge bitbucket.org:rschoon/sqlalchemy into tMike Bayer2014-01-021-1/+2
| |\
| | * Don't barf on Session(info=...) from sessionmaker(info=None)Robin Schoonover2013-12-311-1/+2
| * | - Fixed regression where we don't check the given name against theMike Bayer2014-01-021-1/+1
| * | - A quasi-regression where apparently in 0.8 you can set a class-levelMike Bayer2014-01-021-1/+20
| * | - Fixed regression where we apparently still create an implicitMike Bayer2014-01-021-4/+20
| * | - support addition of fails_if()/only_on(), just wraps the decoratorsMike Bayer2014-01-021-0/+5
| |/