summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/expression.py
Commit message (Expand)AuthorAgeFilesLines
...
* - 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
* - 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