summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/expression.py
Commit message (Expand)AuthorAgeFilesLines
* - Made sqlalchemy.sql.expressions.Executable part of publicMike Bayer2010-02-121-22/+32
* - The type/expression system now does a more complete jobMike Bayer2010-02-111-45/+43
* - FunctionElement subclasses are now directly executable theMike Bayer2010-02-071-3/+4
* - Added math negation operator support, -x.Mike Bayer2010-02-051-0/+6
* fix the kwargs scoping. mysteriously was affecting pool gcingMike Bayer2010-01-291-4/+5
* - inline some code and turn some instance-level defaults into class levelMike Bayer2010-01-291-3/+7
* - the "autocommit" flag on select() and text() as wellMike Bayer2010-01-281-19/+44
* against is optionalMike Bayer2010-01-281-1/+1
* - allow exists(s.as_scalar()) to workMike Bayer2010-01-281-1/+1
* add an informative error msg for non-collection passed to select()Mike Bayer2010-01-281-2/+8
* - Added a tuple_() construct, allows sets of expressionsMike Bayer2010-01-251-5/+38
* - union(), intersect(), except() and other "compound" typesMike Bayer2010-01-251-5/+1
* - Connection has execution_options(), generative methodMike Bayer2010-01-241-5/+7
* not ready to put execution_options in the text()/select() constructors yetMike Bayer2010-01-241-9/+3
* statement_options -> execution_optionsMike Bayer2010-01-171-30/+32
* - added "statement_options()" to Query, to so options can beMike Bayer2010-01-161-22/+43
* happy new yearMike Bayer2010-01-071-1/+1
* - Fixed a column arithmetic bug that affected columnMike Bayer2010-01-031-1/+2
* - clarify ForeignKey docs, copy operationMike Bayer2010-01-021-186/+187
* - calling expr.in_([]), i.e. with an empty list, emits a warningMike Bayer2009-12-291-1/+9
* - Fixed bug preventing alias() of an alias() from beingMike Bayer2009-12-181-1/+1
* documentation patch for [ticket:1354]Mike Bayer2009-12-091-2/+8
* - removed needless "counter" behavior with select()Mike Bayer2009-12-081-8/+0
* - multi-part schema names, i.e. with dots such asMike Bayer2009-12-081-1/+1
* - The "use get" behavior of many-to-one relations, i.e. that aMike Bayer2009-12-081-8/+3
* scan for autocommit based on text() specific flag, saves isinstance() call on...Mike Bayer2009-11-101-2/+2
* - subclassed Function off of new FunctionElement generic baseMike Bayer2009-11-101-51/+57
* added docs to case() illusrtating usage of `literal_column()`, can't implemen...Mike Bayer2009-10-281-1/+11
* - generalized Enum to issue a CHECK constraint + VARCHAR on default platformMike Bayer2009-10-251-3/+3
* - Added new ENUM type to the Postgresql dialect, which exists as a schema-levelMike Bayer2009-10-251-32/+23
* deprecations per [ticket:1498]:Mike Bayer2009-10-151-25/+7
* - an executemany() now requires that all bound parameterMike Bayer2009-10-151-6/+13
* merge from branches/clauseelement-nonzeroPhilip Jenvey2009-09-241-37/+48
* doc fixesMike Bayer2009-08-251-18/+18
* - added **kw to ClauseElement.compare(), so that we can smarten up the "use_g...Mike Bayer2009-08-081-12/+44
* unwrapped _get_colparams a bit, dropped out an isinstance() callMike Bayer2009-08-081-0/+2
* merge 0.6 series to trunk.Mike Bayer2009-08-061-207/+468
* merged [ticket:1486] fix from 0.6Mike Bayer2009-07-281-3/+12
* - Unary expressions such as DISTINCT propagate theirMike Bayer2009-07-251-4/+3
* - Fixed a bug in extract() introduced in 0.5.4 wherebyMike Bayer2009-07-171-2/+1
* - sqlMike Bayer2009-05-291-1/+1
* - The "polymorphic discriminator" column may be part of aMike Bayer2009-05-171-1/+1
* Lots of fixes to the code examples to specify imports explicitly.Michael Trier2009-03-311-4/+8
* extract() is now dialect-sensitive and supports SQLite and others.Jason Kirtland2009-03-301-2/+22
* - Lazy loader will not use get() if the "lazy load"Mike Bayer2009-03-291-1/+1
* - An alias() of a select() will convert to a "scalar subquery"Mike Bayer2009-03-211-2/+22
* - Fixed a recursive pickling issue in serializer, triggeredMike Bayer2009-02-171-0/+6
* - Fixed missing _label attribute on Function object, othersMike Bayer2009-02-011-1/+2
* some docstring stuffMike Bayer2009-01-281-20/+19
* - _CalculatedClause is goneMike Bayer2009-01-281-85/+74