summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/expression.py
Commit message (Expand)AuthorAgeFilesLines
* - Moved to 2.4+ import syntax (w/ some experimental merge-friendly formatting)Jason Kirtland2008-07-151-1/+1
* - Always use native itemgetter & attrgetterJason Kirtland2008-07-151-2/+4
* - Removed 2.3 set emulations/enhancements.Jason Kirtland2008-07-151-14/+14
* And thus ends support for Python 2.3.Jason Kirtland2008-07-151-10/+13
* Added new basic match() operator that performs a full-text search. Supported ...Michael Trier2008-07-131-0/+11
* add with_only_columns to Select to allow for removing columns from selectsAnts Aasma2008-05-291-0/+10
* - added some help for a heavily flush-order-dependent testMike Bayer2008-05-161-1/+3
* Followup to [4760]: forward **kwargs on TableClause.delete()Lele Gaifax2008-05-151-2/+2
* Augment expression.Delete() with a kwargs, like Insert() and Update()Lele Gaifax2008-05-151-2/+4
* - fixed propagation of operate() for aliased relation descriptorsMike Bayer2008-05-131-2/+2
* - clause adaption hits _raw_columns of a select() (though no ORM tests need t...Mike Bayer2008-05-121-1/+1
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-271/+219
* - _Label adds itself to the proxy collection so that it works in correspoindi...Mike Bayer2008-05-061-3/+8
* - same as [ticket:1019] but repaired the non-labeled use caseMike Bayer2008-05-051-1/+4
* - factored out the logic used by Join to create its join conditionMike Bayer2008-05-021-28/+4
* - improved behavior of text() expressions when used asMike Bayer2008-04-261-10/+7
* - Support for COLLATE: collate(expr, col) and expr.collate(col)Jason Kirtland2008-04-161-1/+19
* *headslap* those mutators cant mutate the collections except for never-genera...Mike Bayer2008-04-071-9/+5
* - merged -r4458:4466 of query_columns branchMike Bayer2008-04-071-227/+132
* factored down exportable_columns/flatten_cols/proxy_column/oid_etc_yada down ...Mike Bayer2008-04-041-137/+69
* fixed union() bug whereby oid_column would not be available if no oid_column ...Mike Bayer2008-04-041-2/+5
* A couple of usage examples for the case statementAnts Aasma2008-04-031-0/+9
* - case() interprets the "THEN" expressionsMike Bayer2008-04-031-9/+38
* The case() function now also takes a dictionary as its whens parameter. But b...Ants Aasma2008-04-031-1/+6
* - Got PG server side cursors back into shape, added fixedMike Bayer2008-04-021-23/+30
* - added verbose activity to profiling.function_call_countMike Bayer2008-04-011-8/+12
* - merge() may actually work now, though we've heard that before...Mike Bayer2008-04-011-3/+3
* - schema-qualified tables now will place the schemanameMike Bayer2008-03-301-1/+4
* - merged with_polymorphic branch, which was merged with query_columns branchMike Bayer2008-03-291-0/+9
* - can now allow selects which correlate all FROM clausesMike Bayer2008-03-281-3/+1
* - fixed SQL function truncation of trailing underscoresMike Bayer2008-03-251-1/+1
* added escape kw arg to contains(), startswith(), endswith(), [ticket:791]Mike Bayer2008-03-191-12/+12
* - like() and ilike() take an optional keyword argumentMike Bayer2008-03-191-13/+17
* Added support for vendor-extended INSERT syntax like INSERT DELAYED INTOJason Kirtland2008-03-071-1/+21
* - Updated exception messaging for r4220Jason Kirtland2008-03-041-5/+5
* - added "bind" keyword argument to insert(), update(), delete();Mike Bayer2008-03-041-7/+19
* - fixed bug which was preventing UNIONS from being cloneable,Mike Bayer2008-03-041-8/+11
* silliness reductionMike Bayer2008-02-241-10/+8
* - can again create aliases of selects against textualMike Bayer2008-02-191-0/+1
* - Fixed a couple pyflakes, cleaned up imports & whitespaceJason Kirtland2008-02-141-2/+1
* - fixed bug introduced in r4070 where union() and other compound selects woul...Mike Bayer2008-02-121-1/+1
* - added generative where(<criterion>) method to delete()Mike Bayer2008-02-081-2/+33
* - Some more reST docstring correctionsJason Kirtland2008-02-061-31/+30
* - Workaround for datetime quirk, LHS comparisons to SA expressions now work.Jason Kirtland2008-01-311-0/+3
* - Friendlier exception messages for unbound, implicit executionJason Kirtland2008-01-311-1/+7
* - added "autocommit=True" kwarg to select() and text(),Mike Bayer2008-01-311-3/+23
* - the startswith(), endswith(), and contains() operatorsMike Bayer2008-01-311-33/+33
* - query.join() can also accept tuples of attributeMike Bayer2008-01-231-0/+3
* - some expression fixup:Mike Bayer2008-01-191-20/+44
* finally, a really straightforward reduce() method which reduces colsMike Bayer2008-01-151-42/+11