summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/expression.py
Commit message (Expand)AuthorAgeFilesLines
* - some expression fixup:Mike Bayer2008-01-191-20/+44
* finally, a really straightforward reduce() method which reduces colsMike Bayer2008-01-151-42/+11
* - select_table mapper turns straight join into aliased select + custom PK, to...Mike Bayer2008-01-151-0/+8
* - query.join() can now accept class-mapped attributesMike Bayer2008-01-141-2/+2
* - added "ilike()" operator to column operations.Mike Bayer2008-01-111-0/+4
* - Warnings are now issued as SAWarning instead of RuntimeWarning; util.warn()...Jason Kirtland2008-01-111-4/+4
* - fixed bug in union() so that select() statements which don't deriveMike Bayer2008-01-081-1/+2
* - fixed an attribute history bug whereby assigning a new collectionMike Bayer2008-01-071-2/+2
* - changed name of TEXT to Text since its a "generic" type; TEXT name isMike Bayer2008-01-051-16/+1
* Experimental: modestly more informative repr() for some expressions (using .d...Jason Kirtland2008-01-051-0/+8
* Migrated a few in-function 'from x import y' to the 'global x; if x is None' ...Jason Kirtland2008-01-051-160/+168
* happy new yearMike Bayer2008-01-011-1/+1
* - reworked all lazy/deferred/expired callables to beMike Bayer2007-12-211-2/+3
* a little pre-lunch decrufting and cleanupMike Bayer2007-12-181-61/+25
* - cleanup; lambdas removed from properties; properties mirror same-named func...Mike Bayer2007-12-181-99/+95
* - select().as_scalar() will raise an exception if the select does not haveMike Bayer2007-12-181-7/+11
* - more fixes to the LIMIT/OFFSET aliasing applied with Query + eagerloads,Mike Bayer2007-12-161-31/+27
* moved hide_froms and aggregate_hide_froms to be only on FromClauseMike Bayer2007-12-161-28/+19
* - more query testsMike Bayer2007-12-101-7/+33
* - Query.select_from() now replaces all existing FROM criterion withMike Bayer2007-12-091-5/+11
* changed the anonymous numbering scheme to be more appealingMike Bayer2007-12-081-1/+1
* - generation of "unique" bind parameters has been simplified to use the sameMike Bayer2007-12-061-4/+19
* - basic framework for generic functions, [ticket:615]Mike Bayer2007-12-051-13/+24
* OrderedSet to appease the unit tests....need to find a way to get rid of thisMike Bayer2007-11-251-1/+1
* - named_with_column becomes an attributeMike Bayer2007-11-251-22/+12
* - all kinds of cleanup, tiny-to-slightly-significant speed improvementsMike Bayer2007-11-241-52/+54
* - added op() operator to instrumented attributes; i.e.Mike Bayer2007-11-181-1/+6
* cut down a good deal of Join construction overheadMike Bayer2007-11-181-35/+33
* logging fixesMike Bayer2007-11-181-6/+15
* - anonymous column expressions are automatically labeled.Mike Bayer2007-11-101-7/+9
* more changes to traverse-and-clone; a particular element will only be cloned ...Mike Bayer2007-11-081-14/+25
* - identified some cases where Alias needs to be cloned; but still cant cloneMike Bayer2007-11-081-4/+13
* - fixed remainder of [ticket:853]Mike Bayer2007-11-071-20/+14
* - <Engine|Connection>._execute_clauseelement becomes a public methodMike Bayer2007-11-071-1/+1
* - oid_column proxies more intelligently off of Select, CompoundSelect - fixes...Mike Bayer2007-11-051-18/+73
* - base_columns on ColumnElement becomes a list; as usual, because columns in ...Mike Bayer2007-11-051-30/+20
* - rewrote and simplified the system used to "target" columns acrossMike Bayer2007-11-051-112/+75
* - func. objects can be pickled/unpickled [ticket:844]Mike Bayer2007-11-041-0/+8
* - rewritten ClauseAdapter merged from the eager_minus_join branch; this is a ...Mike Bayer2007-11-031-58/+56
* - removed "name" attribute from FromClause, Join, Select, CompoundSelect. it...Mike Bayer2007-11-031-10/+9
* - fixed expression translation of text() clauses; this repairs variousMike Bayer2007-10-281-1/+1
* - Added contains operator (which generate a "LIKE %<other>%" clause).Gaƫtan de Menten2007-10-191-2/+20
* change the in_ API to accept a sequence or a selectable [ticket:750]Ants Aasma2007-10-161-12/+18
* Assorted unused imports from pyflakes, docstring tweaks, formatting.Jason Kirtland2007-10-131-4/+5
* add support for returning results from inserts and updates for postgresql 8.2...Ants Aasma2007-10-021-10/+14
* - more docstringsMike Bayer2007-09-281-15/+16
* - doc updates. generated sql docs are against sql.expression now.Mike Bayer2007-09-281-67/+156
* - some docstrings for select()Mike Bayer2007-09-261-0/+45
* - created a link between QueryContext and SelectionContext; the attributeMike Bayer2007-09-261-8/+0
* - the behavior of String/Unicode types regarding that they auto-convertMike Bayer2007-09-261-2/+4