| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix many typos throughout the codebasepr/85 | Alex Gaynor | 2014-04-26 | 7 | -10/+10 |
| * | - Liberalized the contract for :class:`.Index` a bit in that you can | Mike Bayer | 2014-04-19 | 2 | -12/+102 |
| * | - Fixed bug in new :meth:`.DialectKWArgs.argument_for` method where | Mike Bayer | 2014-04-15 | 1 | -0/+11 |
| * | fix unclosed file ResourceWarning | Matt Chisholm | 2014-04-14 | 1 | -1/+2 |
| * | - Fixed regression introduced in 0.9 where new "ORDER BY <labelname>" | Mike Bayer | 2014-04-10 | 1 | -0/+9 |
| * | - reverse order of columns in sample CTEs as this is a UNION and the cols nee... | Mike Bayer | 2014-04-02 | 1 | -5/+5 |
| * | - Fixes to the newly enhanced boolean coercion in :ticket:`2804` where | Mike Bayer | 2014-04-01 | 1 | -3/+27 |
| * | - Added new flag :paramref:`.expression.between.symmetric`, when set to True | Mike Bayer | 2014-03-30 | 1 | -3/+43 |
| * | mark failing tests for buggy mysqlconnector | Mike Bayer | 2014-03-28 | 1 | -0/+21 |
| * | - add further coverage for join_condition to make sure we get this case where | Mike Bayer | 2014-03-28 | 1 | -0/+10 |
| * | - rename __multiple__ to __backend__, and apply __backend__ to a large number... | Mike Bayer | 2014-03-24 | 10 | -3/+65 |
| * | - Fixed a few errant ``u''`` strings that would prevent tests from passing | Mike Bayer | 2014-03-22 | 1 | -1/+1 |
| * | - Added support for literal rendering of boolean values, e.g. | Mike Bayer | 2014-03-13 | 1 | -43/+9 |
| * | - add more support for suite tests, moving some tests from test_query out to ... | Mike Bayer | 2014-03-13 | 1 | -153/+24 |
| * | :paramref:`.MetaData.naming_convention` feature will now also | Mike Bayer | 2014-03-12 | 1 | -0/+17 |
| * | - Fixed bug in new :paramref:`.MetaData.naming_convention` feature | Mike Bayer | 2014-03-12 | 1 | -1/+37 |
| * | - Support has been added for pytest to run tests. This runner | Mike Bayer | 2014-03-03 | 5 | -99/+9 |
| * | - Fixed bug in :func:`.tuple_` construct where the "type" of essentially | Mike Bayer | 2014-02-27 | 1 | -1/+21 |
| * | - Adjusted the logic which applies names to the .c collection when | Mike Bayer | 2014-02-26 | 2 | -3/+9 |
| * | - Some changes to how the :attr:`.FromClause.c` collection behaves | Mike Bayer | 2014-02-26 | 1 | -0/+35 |
| * | - Fixed issue in new :meth:`.TextClause.columns` method where the ordering | Mike Bayer | 2014-02-26 | 2 | -0/+39 |
| * | - The new dialect-level keyword argument system for schema-level | Mike Bayer | 2014-02-25 | 1 | -0/+133 |
| * | - we're testing a query here with non-standard aliasing which fails on PG and... | Mike Bayer | 2014-02-24 | 1 | -0/+6 |
| * | - More fixes to SQLite "join rewriting"; the fix from :ticket:`2967` | Mike Bayer | 2014-02-20 | 1 | -2/+66 |
| * | skip this on oracle | Mike Bayer | 2014-02-19 | 1 | -0/+3 |
| * | - re: #2967, also fixed a somewhat related issue where join rewriting would fail | Mike Bayer | 2014-02-19 | 1 | -1/+38 |
| * | - Fixed bug in SQLite "join rewriting" where usage of an exists() construct | Mike Bayer | 2014-02-19 | 1 | -4/+56 |
| * | - Fixed bug where calling :meth:`.Insert.values` with an empty list | Mike Bayer | 2014-02-19 | 1 | -0/+23 |
| * | - Fixed bug where :meth:`.in_()` would go into an endless loop if | Mike Bayer | 2014-02-13 | 1 | -0/+33 |
| * | - for TextAsFrom, put the "inner" columns in the result map directly. | Mike Bayer | 2014-02-10 | 2 | -5/+141 |
| * | - More issues with [ticket:2932] first resolved in 0.9.2 where | Mike Bayer | 2014-02-05 | 1 | -0/+30 |
| * | - Fixed regression in new "naming convention" feature where conventions | Mike Bayer | 2014-02-05 | 1 | -2/+20 |
| * | - Fixed bug where so-called "literal render" of :func:`.bindparam` | Mike Bayer | 2014-02-05 | 1 | -0/+7 |
| * | - The behavior of :meth:`.Table.tometadata` has been adjusted such that | Mike Bayer | 2014-02-02 | 1 | -168/+308 |
| * | - Fixed bug in new :class:`.TextAsFrom` construct where :class:`.Column`- | Mike Bayer | 2014-02-02 | 1 | -0/+45 |
| * | - Added a new feature which allows automated naming conventions to be | Mike Bayer | 2014-02-01 | 1 | -8/+74 |
| * | add a skip for oracle on this | Mike Bayer | 2014-02-01 | 1 | -0/+1 |
| * | - Added a new parameter :paramref:`.Operators.op.is_comparison`. This | Mike Bayer | 2014-01-31 | 1 | -0/+10 |
| * | - Fixed bug whereby SQLite compiler failed to propagate compiler arguments | Mike Bayer | 2014-01-31 | 2 | -0/+17 |
| * | - Fixed regression whereby the "annotation" system used by the ORM was leaking | Mike Bayer | 2014-01-29 | 1 | -0/+5 |
| * | - better way to do it | Mike Bayer | 2014-01-29 | 1 | -2/+4 |
| * | - add TypeError handling to the tests here, ensure TypeError | Mike Bayer | 2014-01-29 | 1 | -8/+15 |
| * | - Fixed 0.9 regression where the new sortable support for :class:`.RowProxy` | Mike Bayer | 2014-01-28 | 1 | -1/+25 |
| * | - Fixed an 0.9 regression where the automatic aliasing applied by | Mike Bayer | 2014-01-23 | 1 | -0/+23 |
| * | - Added new test coverage for so-called "down adaptions" of SQL types, | Mike Bayer | 2014-01-22 | 1 | -3/+19 |
| * | - Fixed the multiple-table "UPDATE..FROM" construct, only usable on | Mike Bayer | 2014-01-20 | 1 | -17/+139 |
| * | - simplify the mechanics of PrimaryKeyConstraint with regards to reflection; | Mike Bayer | 2014-01-20 | 1 | -1/+72 |
| * | - alter behavior such that dialect_kwargs is still immutable, but | Mike Bayer | 2014-01-19 | 1 | -18/+48 |
| * | - some test fixes | Mike Bayer | 2014-01-19 | 1 | -12/+5 |
| * | - implement kwarg validation and type system for dialect-specific | Mike Bayer | 2014-01-18 | 1 | -1/+245 |