| Commit message (Expand) | Author | Age | Files | Lines |
| * | change the in_ API to accept a sequence or a selectable [ticket:750] | Ants Aasma | 2007-10-16 | 1 | -27/+42 |
| * | - move PG RETURNING tests to postgres dialect test | Mike Bayer | 2007-10-04 | 1 | -28/+0 |
| * | add support for returning results from inserts and updates for postgresql 8.2... | Ants Aasma | 2007-10-02 | 1 | -0/+28 |
| * | - adjusted operator precedence of NOT to match '==' and others, so that | Mike Bayer | 2007-09-08 | 1 | -1/+9 |
| * | added assertion case for [ticket:764] | Mike Bayer | 2007-09-08 | 1 | -0/+3 |
| * | - column defaults and onupdates, executing inline, will add parenthesis | Mike Bayer | 2007-09-06 | 1 | -0/+26 |
| * | - removed "parameters" argument from clauseelement.compile(), replaced with | Mike Bayer | 2007-09-04 | 1 | -13/+5 |
| * | - merged inline inserts branch | Mike Bayer | 2007-09-01 | 1 | -1/+8 |
| * | `from foo import (name, name)` isn't valid syntax for 2.3. ah well. | Jason Kirtland | 2007-08-21 | 1 | -1/+1 |
| * | - omitted 'table' and 'column' from 'from sqlalchemy import *' | Jason Kirtland | 2007-08-21 | 1 | -0/+1 |
| * | - modified SQL operator functions to be module-level operators, allowing | Mike Bayer | 2007-08-18 | 1 | -0/+5 |
| * | - merged "fasttypes" branch. this branch changes the signature | Mike Bayer | 2007-08-14 | 1 | -3/+3 |
| * | - generalized a SQLCompileTest out of select.py, installed | Mike Bayer | 2007-08-13 | 1 | -214/+179 |
| * | - decoupled all ColumnElements from also being Selectables. this means | Mike Bayer | 2007-08-09 | 1 | -6/+31 |
| * | - migrated 'desc', 'asc', and 'distinct' to be in the Operators framework | Mike Bayer | 2007-08-07 | 1 | -0/+8 |
| * | - added desc() and asc() directly to CompareMixin | Mike Bayer | 2007-08-06 | 1 | -0/+6 |
| * | - docs | Mike Bayer | 2007-08-06 | 1 | -1/+28 |
| * | - edits | Mike Bayer | 2007-08-06 | 1 | -1/+1 |
| * | - draft sqlexpression tutorial | Mike Bayer | 2007-08-06 | 1 | -0/+22 |
| * | added values() generative method to Insert/Update | Mike Bayer | 2007-08-02 | 1 | -0/+6 |
| * | fixed pydoc bug in [ticket:564] | Mike Bayer | 2007-07-29 | 1 | -0/+8 |
| * | merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintena... | Mike Bayer | 2007-07-27 | 1 | -58/+130 |
| * | add missing grouping for compound selects. fixes ticket #623 | Ants Aasma | 2007-06-26 | 1 | -0/+27 |
| * | fix precedence of between (ticket #621) | Ants Aasma | 2007-06-25 | 1 | -0/+4 |
| * | - fixed precedence of operators so that parenthesis are correctly applied | Mike Bayer | 2007-06-25 | 1 | -6/+30 |
| * | added test for correlation of scalar subqueries to a JOIN object | Mike Bayer | 2007-06-24 | 1 | -0/+7 |
| * | - fixed "where"/"from" criterion of select() to accept a unicode string | Mike Bayer | 2007-06-23 | 1 | -0/+9 |
| * | - added standalone distinct() function in addition to column.distinct() | Mike Bayer | 2007-06-21 | 1 | -0/+9 |
| * | CompoundSelect (i.e. UNION etc.) needed self_group() to provide parenthesis | Mike Bayer | 2007-05-23 | 1 | -0/+10 |
| * | - removed "no group by's in a select thats part of a UNION" | Mike Bayer | 2007-05-18 | 1 | -0/+11 |
| * | restored outerjoin test | Mike Bayer | 2007-05-15 | 1 | -10/+8 |
| * | - parenthesis are applied to clauses via a new _Grouping construct. | Mike Bayer | 2007-05-14 | 1 | -13/+17 |
| * | - _Label propigates "_hide_froms()" so that scalar selects | Mike Bayer | 2007-05-11 | 1 | -1/+5 |
| * | - _Label class overrides compare_self to return its ultimate object. | Mike Bayer | 2007-05-03 | 1 | -1/+5 |
| * | - merged in the combined patch for #474, #475, #476 (attached to #476) and a ... | Jason Kirtland | 2007-04-19 | 1 | -1/+93 |
| * | - the "where" criterion of an update() and delete() now correlates | Mike Bayer | 2007-04-18 | 1 | -1/+6 |
| * | - small fix to allow successive compiles of the same SELECT object | Mike Bayer | 2007-04-13 | 1 | -1/+3 |
| * | - the "mini" column labels generated when using subqueries, which | Mike Bayer | 2007-04-11 | 1 | -11/+19 |
| * | - sending None as an argument to func.<something> will produce | Mike Bayer | 2007-03-28 | 1 | -1/+4 |
| * | - column label and bind param "truncation" also generate | Mike Bayer | 2007-03-28 | 1 | -24/+24 |
| * | - preliminary support for unicode table and column names added. | Mike Bayer | 2007-03-27 | 1 | -0/+1 |
| * | - slightly better support for bind params as column clauses, either | Mike Bayer | 2007-03-21 | 1 | -0/+7 |
| * | - bindparam() names are now repeatable! specify two | Mike Bayer | 2007-03-03 | 1 | -13/+75 |
| * | - use_labels flag on select() wont auto-create labels for literal text | Mike Bayer | 2007-03-01 | 1 | -0/+20 |
| * | fix typo | Mike Bayer | 2007-02-25 | 1 | -4/+4 |
| * | - correlated subqueries work inside of ORDER BY, GROUP BY | Mike Bayer | 2007-02-24 | 1 | -6/+19 |
| * | - exists() becomes useable as a standalone selectable, not just in a | Mike Bayer | 2007-02-23 | 1 | -0/+3 |
| * | - another fix to subquery correlation so that a subquery which has only one FROM | Mike Bayer | 2007-01-19 | 1 | -1/+4 |
| * | - the "op()" function is now treated as an "operation", rather than a "compar... | Mike Bayer | 2007-01-08 | 1 | -0/+6 |
| * | - fix to correlation of subqueries when the column list of the select statement | Mike Bayer | 2006-12-28 | 1 | -0/+8 |