| Commit message (Expand) | Author | Age | Files | Lines |
* | Add with_for_update() support in session.refresh() | Mike Bayer | 2017-05-24 | 1 | -0/+13 |
* | Add links to with_only_columns to Select.column, append_column | Mike Bayer | 2017-05-12 | 1 | -19/+16 |
* | Use consistent method signature for Alias.self_group() | Mike Bayer | 2017-04-03 | 1 | -4/+4 |
* | Only use schema_translate_map on SchemaItem subclasses | Mike Bayer | 2017-02-28 | 1 | -0/+3 |
* | Support python3.6 | Mike Bayer | 2017-01-13 | 1 | -32/+32 |
* | Merge "Tighten rules for order_by(Label) resolution" | mike bayer | 2017-01-09 | 1 | -2/+3 |
|\ |
|
| * | Tighten rules for order_by(Label) resolution | Mike Bayer | 2017-01-06 | 1 | -2/+3 |
* | | update for 2017 copyright | Mike Bayer | 2017-01-04 | 1 | -1/+1 |
|/ |
|
* | spelling: Postgresql -> PostgreSQL | Ville Skyttä | 2016-10-08 | 1 | -13/+13 |
* | Repair foreign_keys population for Join._refresh_for_new_column | Mike Bayer | 2016-09-15 | 1 | -1/+1 |
* | Fixed example of upsert in the HasCTE.cte docstring bypr/302 | Vladimir Magamedov | 2016-08-27 | 1 | -18/+28 |
* | Merge "Add TABLESAMPLE clause support." | mike bayer | 2016-06-15 | 1 | -0/+92 |
|\ |
|
| * | Add TABLESAMPLE clause support. | saarni | 2016-06-15 | 1 | -0/+92 |
* | | Interpret lateral, alias as from clauses | Mike Bayer | 2016-06-15 | 1 | -2/+2 |
|/ |
|
* | Deprecate FromClause.count() | Mike Bayer | 2016-06-14 | 1 | -16/+25 |
* | Ensure CTE internals are handled during clone | Mike Bayer | 2016-06-10 | 1 | -0/+8 |
* | Add 'FOR NO KEY UPDATE' / 'FOR KEY SHARE' support for Postgresql | Sergey Skopin | 2016-06-08 | 1 | -5/+12 |
* | Add SKIP LOCKED support for Postgresql, Oracle | Jack Zhou | 2016-06-02 | 1 | -3/+14 |
* | - Added :meth:`.Select.lateral` and related constructs to allow | Mike Bayer | 2016-03-29 | 1 | -0/+58 |
* | - Added support for rendering "FULL OUTER JOIN" to both Core and ORM. | Mike Bayer | 2016-03-28 | 1 | -10/+26 |
* | - CTE functionality has been expanded to support all DML, allowing | Mike Bayer | 2016-02-11 | 1 | -120/+168 |
* | - happy new year | Mike Bayer | 2016-01-29 | 1 | -1/+1 |
* | - A deep improvement to the recently added :meth:`.TextClause.columns` | Mike Bayer | 2016-01-14 | 1 | -1/+2 |
* | - The behavior of the :func:`.union` construct and related constructs | Mike Bayer | 2015-08-12 | 1 | -1/+17 |
* | - fix typo in suffix_with() docs, fixes #3502 | Mike Bayer | 2015-07-29 | 1 | -1/+1 |
* | - Fixed a regression that was incorrectly fixed in 1.0.0b4 | Mike Bayer | 2015-04-24 | 1 | -3/+4 |
* | - Fixed issue where a straight SELECT EXISTS query would fail to | Mike Bayer | 2015-04-20 | 1 | -1/+2 |
* | Fix typospr/165 | Ernest Walzel | 2015-03-26 | 1 | -1/+1 |
* | - Fixed bug in new "label resolution" feature of :ticket:`2992` where | Mike Bayer | 2015-03-21 | 1 | -1/+2 |
* | - copyright 2015 | Mike Bayer | 2015-03-10 | 1 | -1/+1 |
* | - pick around gaining modest dings in callcounts here and there | Mike Bayer | 2015-03-09 | 1 | -2/+3 |
* | - random performance whacking vs. 0.9, in particular we have to watch | Mike Bayer | 2015-03-08 | 1 | -15/+14 |
* | - Added support for CTEs under Oracle. This includes some tweaks | Mike Bayer | 2014-12-04 | 1 | -42/+89 |
* | - apply patches to correct for + sign in with_hint() docs, | Mike Bayer | 2014-10-10 | 1 | -3/+2 |
* | - cyclomatic complexity: _join_condition goes from E to a B | Mike Bayer | 2014-09-27 | 1 | -43/+54 |
* | - Added new method :meth:`.Select.with_statement_hint` and ORM | Mike Bayer | 2014-09-18 | 1 | -4/+32 |
* | - add in all the method-chained methods to the parameter descriptions | Mike Bayer | 2014-09-09 | 1 | -43/+131 |
* | - rework the previous "order by" system in terms of the new one, | Mike Bayer | 2014-09-08 | 1 | -4/+6 |
* | wip for #3148 | Mike Bayer | 2014-09-06 | 1 | -6/+9 |
* | - document all the varities of _label on the base ColumnElement | Mike Bayer | 2014-09-06 | 1 | -2/+2 |
* | - add logic to compiler such that if stack is empty, we just | Mike Bayer | 2014-09-02 | 1 | -0/+1 |
* | - The :func:`~.expression.column` and :func:`~.expression.table` | Mike Bayer | 2014-09-01 | 1 | -16/+45 |
* | - apply pep8 formatting to sqlalchemy/sql, sqlalchemy/util, sqlalchemy/dialects, | Brian Jarrett | 2014-07-20 | 1 | -242/+266 |
* | - Fixed a SQLite join rewriting issue where a subquery that is embedded | Mike Bayer | 2014-07-15 | 1 | -0/+1 |
* | - break up the <authors> copyright comment as part of a pass | Mike Bayer | 2014-07-09 | 1 | -1/+2 |
* | - Fixed bug in INSERT..FROM SELECT construct where selecting from a | Mike Bayer | 2014-05-25 | 1 | -1/+1 |
* | - more tests, including backend tests | Mike Bayer | 2014-05-16 | 1 | -30/+54 |
* | Merge branch 'issue_3034' of https://bitbucket.org/dobesv/sqlalchemy/branch/i... | Mike Bayer | 2014-05-16 | 1 | -7/+68 |
|\ |
|
| * | Remove unused import | Dobes Vandermeer | 2014-05-09 | 1 | -6/+29 |
| * | Remove unused import | Dobes Vandermeer | 2014-04-25 | 1 | -1/+1 |