| Commit message (Expand) | Author | Age | Files | Lines |
* | - implement LATERAL, needs tests, references #2857ticket_2587 | Mike Bayer | 2015-09-01 | 1 | -5/+10 |
* | - Added support for "set-aggregate" functions of the formticket_3516 | Mike Bayer | 2015-08-26 | 1 | -1/+7 |
* | - build out a new base type for Array, as well as new any/all operators | Mike Bayer | 2015-08-25 | 1 | -0/+2 |
* | - Added new checks for the common error case of passing mapped classes | Mike Bayer | 2015-08-22 | 1 | -0/+2 |
* | - some cleanups in compiler.py | Mike Bayer | 2015-08-18 | 1 | -50/+32 |
* | - Fixed regression where :meth:`.ResultProxy.keys` would return | Mike Bayer | 2015-07-19 | 1 | -3/+0 |
* | add CYCLE support to Sequence() and docstrings for NO MINVALUE and NO MAXVALUEpr/186 | jakeogh | 2015-06-27 | 1 | -2/+4 |
* | add NO MINVALUE and NO MAXVALUE support to Sequence() | jakeogh | 2015-06-27 | 1 | -0/+4 |
* | add MAXVALUE support to Sequence() | jakeogh | 2015-06-27 | 1 | -0/+2 |
* | add MINVALUE support to Sequence() | jakeogh | 2015-06-27 | 1 | -0/+2 |
* | - Added official support for a CTE used by the SELECT present | Mike Bayer | 2015-05-08 | 1 | -1/+15 |
* | - Fixed bug where the truncation of long labels in SQL could produce | Mike Bayer | 2015-04-28 | 1 | -1/+1 |
* | - Fixed support for "literal_binds" mode when using limit/offset | Mike Bayer | 2015-04-23 | 1 | -2/+2 |
* | - Fixed issue where a straight SELECT EXISTS query would fail to | Mike Bayer | 2015-04-20 | 1 | -4/+17 |
* | - Fixed bug in new "label resolution" feature of :ticket:`2992` where | Mike Bayer | 2015-03-23 | 1 | -1/+0 |
* | - copyright 2015 | Mike Bayer | 2015-03-10 | 1 | -1/+1 |
* | - rename _select_wraps | Mike Bayer | 2015-03-08 | 1 | -13/+33 |
* | foo | Mike Bayer | 2015-03-08 | 1 | -16/+5 |
* | - the change for #918 was of course not nearly that simple. | Mike Bayer | 2015-03-07 | 1 | -33/+45 |
* | - The SQL compiler now generates the mapping of expected columnspositional_targeting | Mike Bayer | 2015-03-07 | 1 | -13/+29 |
* | - Literal values within a :class:`.DefaultClause`, which is invoked | Mike Bayer | 2015-02-09 | 1 | -1/+2 |
* | - Custom dialects that implement :class:`.GenericTypeCompiler` can | Mike Bayer | 2015-01-16 | 1 | -66/+69 |
* | - restate sort_tables in terms of a more fine grained | Mike Bayer | 2015-01-01 | 1 | -4/+25 |
* | - Added support for CTEs under Oracle. This includes some tweaks | Mike Bayer | 2014-12-04 | 1 | -3/+14 |
* | - The :meth:`.Operators.match` operator is now handled such that the | Mike Bayer | 2014-12-04 | 1 | -2/+7 |
* | - The behavioral contract of the :attr:`.ForeignKeyConstraint.columns` | Mike Bayer | 2014-11-25 | 1 | -3/+3 |
* | - Fixed issue where the columns from a SELECT embedded in an | Mike Bayer | 2014-11-11 | 1 | -0/+8 |
* | - ensure kwargs are passed for limit clause on a compound select as well, | Mike Bayer | 2014-10-31 | 1 | -1/+1 |
* | - :meth:`.Insert.from_select` now includes Python and SQL-expression | Mike Bayer | 2014-10-10 | 1 | -1/+1 |
* | Merge remote-tracking branch 'origin/pr/134' into pr134 | Mike Bayer | 2014-10-04 | 1 | -0/+6 |
|\ |
|
| * | renamed aggregatefilter to funcfilter, since it is that | Ilja Everilä | 2014-09-11 | 1 | -3/+3 |
| * | implementation for <aggregate_fun> FILTER (WHERE ...) | Ilja Everilä | 2014-09-10 | 1 | -0/+6 |
* | | - cyclomatic complexity; break up visit_select, goes from F to D | Mike Bayer | 2014-09-27 | 1 | -52/+69 |
* | | - cyclomatic complexity: _get_colparams() becomes sql.crud._get_crud_params, | Mike Bayer | 2014-09-27 | 1 | -421/+38 |
* | | - Added new method :meth:`.Select.with_statement_hint` and ORM | Mike Bayer | 2014-09-18 | 1 | -0/+12 |
|/ |
|
* | - rework the previous "order by" system in terms of the new one, | Mike Bayer | 2014-09-08 | 1 | -36/+40 |
* | - enhance ClauseAdapter / ColumnAdapter to have new behaviors with labels. | Mike Bayer | 2014-09-07 | 1 | -8/+2 |
* | wip for #3148 | Mike Bayer | 2014-09-06 | 1 | -1/+5 |
* | - tiny refactors #1-#5 | Mike Bayer | 2014-09-05 | 1 | -3/+12 |
* | - ensure literal_binds works with LIMIT clause, FOR UPDATE | Mike Bayer | 2014-09-03 | 1 | -6/+6 |
* | - add logic to compiler such that if stack is empty, we just | Mike Bayer | 2014-09-02 | 1 | -1/+7 |
* | - The :func:`~.expression.column` and :func:`~.expression.table` | Mike Bayer | 2014-09-01 | 1 | -4/+24 |
* | - The INSERT...FROM SELECT construct now implies ``inline=True`` | Mike Bayer | 2014-08-20 | 1 | -1/+3 |
* | - Fixed bug in CTE where ``literal_binds`` compiler argument would not | Mike Bayer | 2014-08-02 | 1 | -1/+1 |
* | - apply pep8 formatting to sqlalchemy/sql, sqlalchemy/util, sqlalchemy/dialects, | Brian Jarrett | 2014-07-20 | 1 | -504/+515 |
* | - Fixed a SQLite join rewriting issue where a subquery that is embedded | Mike Bayer | 2014-07-15 | 1 | -8/+10 |
* | - allow the compilation rule that gets the formatted name | Mike Bayer | 2014-07-14 | 1 | -13/+19 |
* | - Fix bug in naming convention feature where using a check | Mike Bayer | 2014-07-14 | 1 | -1/+7 |
* | -Fixed bug in common table expressions whereby positional bound | Mike Bayer | 2014-07-14 | 1 | -7/+10 |
* | - Fixed bug where multi-valued :class:`.Insert` construct would fail | Mike Bayer | 2014-07-14 | 1 | -2/+4 |