summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
* - the various "engine" arguments, such as "engine", "connectable",Mike Bayer2007-07-121-38/+50
* changed "_source_column" to simpler "_distance"Mike Bayer2007-07-101-15/+8
* more "column targeting" enhancements..columns have a "depth" from their ultim...Mike Bayer2007-07-101-6/+20
* add missing grouping for compound selects. fixes ticket #623Ants Aasma2007-06-261-1/+6
* fix precedence of between (ticket #621)Ants Aasma2007-06-251-11/+5
* - fixed precedence of operators so that parenthesis are correctly appliedMike Bayer2007-06-251-16/+38
* - fixed "where"/"from" criterion of select() to accept a unicode stringMike Bayer2007-06-231-2/+2
* - added standalone distinct() function in addition to column.distinct()Mike Bayer2007-06-211-1/+9
* orig_set is a Set [ticket:614]Mike Bayer2007-06-201-1/+1
* Multiple MSSQL fixes; see ticket #581Paul Johnston2007-06-131-0/+1
* extra test for corresponding column fixMike Bayer2007-06-071-0/+2
* - fixed bug where selectable.corresponding_column(selectable.c.col)Mike Bayer2007-06-061-1/+3
* another object.__init__() call with args....might need to build py2.6 to test...Mike Bayer2007-05-261-1/+1
* removed ClauseVisitor.__init__(), doesnt work with python trunkMike Bayer2007-05-261-2/+1
* CompoundSelect (i.e. UNION etc.) needed self_group() to provide parenthesisMike Bayer2007-05-231-0/+3
* restored comparison of 1-element clause list -> ClauseElement, which was brok...Mike Bayer2007-05-201-1/+3
* - removed "no group by's in a select thats part of a UNION"Mike Bayer2007-05-181-1/+0
* fixed LoggingClauseVisitorMike Bayer2007-05-151-13/+19
* - parenthesis are applied to clauses via a new _Grouping construct.Mike Bayer2007-05-141-187/+223
* - _Label propigates "_hide_froms()" so that scalar selectsMike Bayer2007-05-111-1/+4
* - _Label class overrides compare_self to return its ultimate object.Mike Bayer2007-05-031-0/+3
* - Aliasizer removed. hooray !Mike Bayer2007-05-021-1/+15
* - applied YAGNI to supports_autoclose_results (this issue would be handled by...Mike Bayer2007-04-301-4/+4
* - restored old "column_property()" ORM function (used to be calledMike Bayer2007-04-291-1/+1
* - the label() method on ColumnElement will properly propigate theMike Bayer2007-04-291-1/+1
* added orig_set colleciton to Select when its declared as a scalar, to allowMike Bayer2007-04-291-1/+5
* docstring tweaksMike Bayer2007-04-291-6/+6
* - fixed textual select elements that got broke the other dayMike Bayer2007-04-291-2/+12
* - support for inline hyperlinks between HTML-generated docstringsMike Bayer2007-04-281-204/+410
* - primary key determination within Join maintains table PK orderingMike Bayer2007-04-241-1/+1
* - fix to case() construct to propigate the type of the firstMike Bayer2007-04-241-1/+12
* - some docstringsMike Bayer2007-04-201-15/+155
* - merged in the combined patch for #474, #475, #476 (attached to #476) and a ...Jason Kirtland2007-04-191-13/+33
* some docstringsMike Bayer2007-04-191-0/+1
* - the "where" criterion of an update() and delete() now correlatesMike Bayer2007-04-181-5/+21
* - got unicode schemas to work with postgresMike Bayer2007-04-151-2/+6
* didnt need that method...Mike Bayer2007-04-141-10/+0
* some docstrings to provide more detail in the sql packageMike Bayer2007-04-141-13/+86
* - the "mini" column labels generated when using subqueries, whichMike Bayer2007-04-111-2/+19
* - some cleanup of reflection unit testsMike Bayer2007-04-041-0/+3
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-021-1/+1
* latest #214 fixupsMike Bayer2007-03-311-36/+91
* added keys() to ColumnParameters, needed for setbindparamsizes traversalMike Bayer2007-03-281-1/+4
* - sending None as an argument to func.<something> will produceMike Bayer2007-03-281-1/+1
* - column label and bind param "truncation" also generateMike Bayer2007-03-281-16/+34
* added label truncation for bind param names which was lost in the previous re...Mike Bayer2007-03-281-3/+3
* some more docstring patches for [ticket:214]Mike Bayer2007-03-281-9/+15
* - fixes [ticket:185], join object determines primary key and removesMike Bayer2007-03-271-17/+47
* - some logging cleanupMike Bayer2007-03-271-1/+3
* - preliminary support for unicode table and column names added.Mike Bayer2007-03-271-3/+10