summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
...
* "count" label changed to "rowcount", and default "count" argument is first pk...Mike Bayer2006-06-011-2/+10
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-154/+212
* added explicit check for "==null()" to produce IS NULL, documnted "==None", "...Mike Bayer2006-05-241-9/+8
* rick morrison's CASE statement + unit testMike Bayer2006-05-151-18/+49
* added != support for None -> foo IS NOT NULLMike Bayer2006-05-121-2/+6
* added __mod__ typerel_0_1_7Mike Bayer2006-05-051-0/+2
* fix to subquery parensMike Bayer2006-04-281-3/+2
* fixed up expunge() and the continuing circular refs in attributes, added a un...Mike Bayer2006-04-191-1/+4
* added _get_from_obj to TypeClauseMike Bayer2006-04-171-1/+2
* had to take out the "treeification" of the dependency sort as it doenst reall...Mike Bayer2006-04-141-1/+2
* a little spring cleaning for the util package, etcMike Bayer2006-04-071-3/+2
* split up Session into Session/LegacySession, added some new constructor argsMike Bayer2006-04-061-28/+38
* moves the binding of a TypeEngine object from "schema/statement creation" tim...Mike Bayer2006-04-061-28/+22
* factored oid column into a consistent late-bound pattern, fixing [ticket:146]Mike Bayer2006-04-041-20/+33
* Added cast() to allow use of cast(tbl.c.col as Numeric(4,2)) in select and wh...Robert Leftwich2006-04-041-1/+20
* further order_by: order_by() with no arguments should not affect the current...Mike Bayer2006-04-031-2/+2
* ack, fixes to the order by stuff from last nightMike Bayer2006-04-031-3/+3
* added to_selectable() onto ColumnClause to simplify _get_col_by_originalMike Bayer2006-04-031-0/+6
* made order_by/group_by construction a little more simplisitcMike Bayer2006-04-031-46/+31
* added a type to label....Mike Bayer2006-04-031-2/+3
* added "parenthesis" check on binary clauses referencing binary clauses, for [...Mike Bayer2006-04-021-0/+4
* added for_update flag to Select/CompoundSelectMike Bayer2006-03-311-1/+3
* fixed "DISTINCT" spellingMike Bayer2006-03-281-1/+1
* column label generation checks for a conflict against a column named the same...Mike Bayer2006-03-261-1/+1
* removed all "tablename + '_' + columname" code and replaced with column._labe...Mike Bayer2006-03-251-1/+1
* some more tweaks to get more advanced polymorphic stuff to workMike Bayer2006-03-241-2/+4
* added "name" back to FromClauseMike Bayer2006-03-211-1/+1
* a few tweaks and the polymorph example can also use eager loadingMike Bayer2006-03-201-0/+1
* added distinct() function to column elements for "DISTINCT <col>"Mike Bayer2006-03-191-0/+2
* got rid of from "ids", using the From object itself as identity now. improve...Mike Bayer2006-03-191-22/+16
* der + engine...Mike Bayer2006-03-181-1/+1
* got oracle parenthesized rules for funcs back, fixed copy_container on functionMike Bayer2006-03-181-2/+2
* expanded and integrated qvx's patch for dotted function namesMike Bayer2006-03-161-1/+13
* added scalar subqueries within the column clause of another selectMike Bayer2006-03-131-10/+26
* oracle is requiring dictionary params to be in a clean dict, added conversionMike Bayer2006-03-131-0/+5
* small tweak to select in order to fix [ticket:112]...the exported columns whe...Mike Bayer2006-03-131-1/+1
* refactor to Compiled.get_params() to return new ClauseParameters object, a mo...Mike Bayer2006-03-131-0/+23
* added 'noninherited table' prop to mapper indicating the "lead" table, in the...Mike Bayer2006-03-091-0/+1
* serious overhaul to get eager loads to work inline with an inheriting mapper,...Mike Bayer2006-03-081-8/+15
* took erroneous 'count' off AliasMike Bayer2006-03-081-1/+0
* checking in patch for column labels limit at 30 chars...what the heckMike Bayer2006-03-061-4/+10
* a mapper with inheritance will place itself as "dependent" on the inherited m...Mike Bayer2006-03-061-1/+0
* added new 'polymorphic' example. still trying to understand it :) .Mike Bayer2006-03-061-3/+5
* more tweak to compoundselect parenthesizing/subquery flagMike Bayer2006-03-061-4/+2
* selects within a compound clause dont get parenthesis addedMike Bayer2006-03-061-1/+9
* got column onupdate workingMike Bayer2006-03-051-0/+9
* removed the dependency of ANSICompiler on SQLEngine. you can now make ANSICo...Mike Bayer2006-03-041-21/+28
* oid inits at compilation time/when needed again, added a unit testMike Bayer2006-02-281-4/+4
* Merge indexes [1047]:[1048] into trunk (for #6)Jason Pellerin2006-02-261-0/+3
* fixed ticket 72, where a copied clause was using the identical bind param obj...Mike Bayer2006-02-261-0/+2