| Commit message (Expand) | Author | Age | Files | Lines |
| * | fix CASE statement when else_ is zero | Rick Morrison | 2007-03-15 | 1 | -1/+1 |
| * | some formatting | Mike Bayer | 2007-03-13 | 1 | -5/+23 |
| * | - for hackers, refactored the "visitor" system of ClauseElement and | Mike Bayer | 2007-03-11 | 1 | -96/+206 |
| * | - added concept of 'require_embedded' to corresponding_column. | Mike Bayer | 2007-03-05 | 1 | -8/+28 |
| * | - bindparam() names are now repeatable! specify two | Mike Bayer | 2007-03-03 | 1 | -16/+33 |
| * | - added "fold_equivalents" argument to Join.select(), which removes | Mike Bayer | 2007-03-02 | 1 | -3/+50 |
| * | - use_labels flag on select() wont auto-create labels for literal text | Mike Bayer | 2007-03-01 | 1 | -3/+18 |
| * | migrated (most) docstrings to pep-257 format, docstring generator using strai... | Mike Bayer | 2007-02-25 | 1 | -376/+820 |
| * | - correlated subqueries work inside of ORDER BY, GROUP BY | Mike Bayer | 2007-02-24 | 1 | -4/+13 |
| * | - exists() becomes useable as a standalone selectable, not just in a | Mike Bayer | 2007-02-23 | 1 | -4/+11 |
| * | - implemented foreign_keys argument on relation() [ticket:385] | Mike Bayer | 2007-02-10 | 1 | -1/+1 |
| * | - added literal_column() to specify a column clause that should not undergo a... | Mike Bayer | 2007-02-04 | 1 | -5/+10 |
| * | OK nevermind that last commit, rolling the quoting fix back | Mike Bayer | 2007-02-04 | 1 | -1/+1 |
| * | - more quoting fixes for [ticket:450]...quoting more aggressive (but still sk... | Mike Bayer | 2007-02-04 | 1 | -5/+6 |
| * | - added a "supports_execution()" method to ClauseElement, so that individual | Mike Bayer | 2007-02-02 | 1 | -3/+15 |
| * | removed various print statements | Mike Bayer | 2007-01-28 | 1 | -1/+0 |
| * | merged the polymorphic relationship refactoring branch in. i want to go furt... | Mike Bayer | 2007-01-28 | 1 | -1/+7 |
| * | - calling corresponding_column with keys_ok matches columns on name, not key,... | Mike Bayer | 2007-01-24 | 1 | -2/+2 |
| * | - tightened down conditions used to locate "relation direction", associating | Mike Bayer | 2007-01-20 | 1 | -1/+9 |
| * | - trailing underscores are trimmed from func.<xxx> calls, such as func.if_() | Mike Bayer | 2007-01-19 | 1 | -0/+2 |
| * | - changed "BooleanExpression" to subclass from "BinaryExpression", so that bo... | Mike Bayer | 2007-01-19 | 1 | -9/+8 |
| * | - another fix to subquery correlation so that a subquery which has only one FROM | Mike Bayer | 2007-01-19 | 1 | -1/+7 |
| * | - added optional constructor to sql.ColumnCollection | Mike Bayer | 2007-01-15 | 1 | -0/+3 |
| * | - the "op()" function is now treated as an "operation", rather than a "compar... | Mike Bayer | 2007-01-08 | 1 | -1/+1 |
| * | copyright update | Mike Bayer | 2007-01-05 | 1 | -1/+1 |
| * | - fix to correlation of subqueries when the column list of the select statement | Mike Bayer | 2006-12-28 | 1 | -3/+6 |
| * | reversing last commit | Rick Morrison | 2006-12-18 | 1 | -1/+1 |
| * | added missing ref to between in sql.py __all__ | Rick Morrison | 2006-12-17 | 1 | -1/+1 |
| * | - string-based FROM clauses fixed, i.e. select(..., from_obj=["sometext"]) | Mike Bayer | 2006-12-12 | 1 | -1/+1 |
| * | - sending a selectable to an IN no longer creates a "union" out of multiple | Mike Bayer | 2006-11-29 | 1 | -4/+7 |
| * | added label() function to Select class, useable only with select | Mike Bayer | 2006-11-27 | 1 | -1/+14 |
| * | - made kwargs parsing to Table strict; removed various obsoluete "redefine=Tr... | Mike Bayer | 2006-11-26 | 1 | -50/+30 |
| * | some clenaup on the "correlation" API on the _Select class | Mike Bayer | 2006-11-25 | 1 | -13/+17 |
| * | - cleanup on some instance vars in Select (is_scalar, is_subquery, _froms is ... | Mike Bayer | 2006-11-25 | 1 | -36/+52 |
| * | figured out how a Select can be in its own _froms list, changed assertion to ... | Mike Bayer | 2006-10-31 | 1 | -2/+4 |
| * | converted imports to absolute | Mike Bayer | 2006-10-26 | 1 | -1/+0 |
| * | updates to oracle | Mike Bayer | 2006-10-22 | 1 | -2/+2 |
| * | renamed Column/ColumnClause "hidden" to "_is_oid" | Mike Bayer | 2006-10-22 | 1 | -5/+5 |
| * | some docstring stuff | Mike Bayer | 2006-10-20 | 1 | -1/+1 |
| * | ok, TableClause should be public | Mike Bayer | 2006-10-17 | 1 | -9/+9 |
| * | reorganizing classnames a bit, flagging "private" classes in the sql package, | Mike Bayer | 2006-10-17 | 1 | -130/+142 |
| * | - a fair amount of cleanup to the schema package, removal of ambiguous | Mike Bayer | 2006-10-14 | 1 | -17/+18 |
| * | - the "foreign_key" attribute on Column and ColumnElement in general | Mike Bayer | 2006-10-08 | 1 | -5/+11 |
| * | - Function objects know what to do in a FROM clause now. their | Mike Bayer | 2006-10-03 | 1 | -2/+13 |
| * | - added test suite to test improved from_obj/join behavior with Query/eagerlo... | Mike Bayer | 2006-09-28 | 1 | -5/+2 |
| * | decruftify | Mike Bayer | 2006-09-28 | 1 | -17/+28 |
| * | - pool will auto-close open cursors, or can be configured to raise an error i... | Mike Bayer | 2006-09-28 | 1 | -70/+49 |
| * | - BooleanExpression includes new "negate" argument to specify | Mike Bayer | 2006-09-21 | 1 | -12/+22 |
| * | added extract() function to sql dialect | Mike Bayer | 2006-09-14 | 1 | -2/+6 |
| * | - unicode fix for startswith()/endswith() [ticket:296] | Mike Bayer | 2006-09-05 | 1 | -2/+2 |