| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | "count" label changed to "rowcount", and default "count" argument is first pk... | Mike Bayer | 2006-06-01 | 1 | -2/+10 |
* | merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1 | Mike Bayer | 2006-05-25 | 1 | -154/+212 |
* | added explicit check for "==null()" to produce IS NULL, documnted "==None", "... | Mike Bayer | 2006-05-24 | 1 | -9/+8 |
* | rick morrison's CASE statement + unit test | Mike Bayer | 2006-05-15 | 1 | -18/+49 |
* | added != support for None -> foo IS NOT NULL | Mike Bayer | 2006-05-12 | 1 | -2/+6 |
* | added __mod__ typerel_0_1_7 | Mike Bayer | 2006-05-05 | 1 | -0/+2 |
* | fix to subquery parens | Mike Bayer | 2006-04-28 | 1 | -3/+2 |
* | fixed up expunge() and the continuing circular refs in attributes, added a un... | Mike Bayer | 2006-04-19 | 1 | -1/+4 |
* | added _get_from_obj to TypeClause | Mike Bayer | 2006-04-17 | 1 | -1/+2 |
* | had to take out the "treeification" of the dependency sort as it doenst reall... | Mike Bayer | 2006-04-14 | 1 | -1/+2 |
* | a little spring cleaning for the util package, etc | Mike Bayer | 2006-04-07 | 1 | -3/+2 |
* | split up Session into Session/LegacySession, added some new constructor args | Mike Bayer | 2006-04-06 | 1 | -28/+38 |
* | moves the binding of a TypeEngine object from "schema/statement creation" tim... | Mike Bayer | 2006-04-06 | 1 | -28/+22 |
* | factored oid column into a consistent late-bound pattern, fixing [ticket:146] | Mike Bayer | 2006-04-04 | 1 | -20/+33 |
* | Added cast() to allow use of cast(tbl.c.col as Numeric(4,2)) in select and wh... | Robert Leftwich | 2006-04-04 | 1 | -1/+20 |
* | further order_by: order_by() with no arguments should not affect the current... | Mike Bayer | 2006-04-03 | 1 | -2/+2 |
* | ack, fixes to the order by stuff from last night | Mike Bayer | 2006-04-03 | 1 | -3/+3 |
* | added to_selectable() onto ColumnClause to simplify _get_col_by_original | Mike Bayer | 2006-04-03 | 1 | -0/+6 |
* | made order_by/group_by construction a little more simplisitc | Mike Bayer | 2006-04-03 | 1 | -46/+31 |
* | added a type to label.... | Mike Bayer | 2006-04-03 | 1 | -2/+3 |
* | added "parenthesis" check on binary clauses referencing binary clauses, for [... | Mike Bayer | 2006-04-02 | 1 | -0/+4 |
* | added for_update flag to Select/CompoundSelect | Mike Bayer | 2006-03-31 | 1 | -1/+3 |
* | fixed "DISTINCT" spelling | Mike Bayer | 2006-03-28 | 1 | -1/+1 |
* | column label generation checks for a conflict against a column named the same... | Mike Bayer | 2006-03-26 | 1 | -1/+1 |
* | removed all "tablename + '_' + columname" code and replaced with column._labe... | Mike Bayer | 2006-03-25 | 1 | -1/+1 |
* | some more tweaks to get more advanced polymorphic stuff to work | Mike Bayer | 2006-03-24 | 1 | -2/+4 |
* | added "name" back to FromClause | Mike Bayer | 2006-03-21 | 1 | -1/+1 |
* | a few tweaks and the polymorph example can also use eager loading | Mike Bayer | 2006-03-20 | 1 | -0/+1 |
* | added distinct() function to column elements for "DISTINCT <col>" | Mike Bayer | 2006-03-19 | 1 | -0/+2 |
* | got rid of from "ids", using the From object itself as identity now. improve... | Mike Bayer | 2006-03-19 | 1 | -22/+16 |
* | der + engine... | Mike Bayer | 2006-03-18 | 1 | -1/+1 |
* | got oracle parenthesized rules for funcs back, fixed copy_container on function | Mike Bayer | 2006-03-18 | 1 | -2/+2 |
* | expanded and integrated qvx's patch for dotted function names | Mike Bayer | 2006-03-16 | 1 | -1/+13 |
* | added scalar subqueries within the column clause of another select | Mike Bayer | 2006-03-13 | 1 | -10/+26 |
* | oracle is requiring dictionary params to be in a clean dict, added conversion | Mike Bayer | 2006-03-13 | 1 | -0/+5 |
* | small tweak to select in order to fix [ticket:112]...the exported columns whe... | Mike Bayer | 2006-03-13 | 1 | -1/+1 |
* | refactor to Compiled.get_params() to return new ClauseParameters object, a mo... | Mike Bayer | 2006-03-13 | 1 | -0/+23 |
* | added 'noninherited table' prop to mapper indicating the "lead" table, in the... | Mike Bayer | 2006-03-09 | 1 | -0/+1 |
* | serious overhaul to get eager loads to work inline with an inheriting mapper,... | Mike Bayer | 2006-03-08 | 1 | -8/+15 |
* | took erroneous 'count' off Alias | Mike Bayer | 2006-03-08 | 1 | -1/+0 |
* | checking in patch for column labels limit at 30 chars...what the heck | Mike Bayer | 2006-03-06 | 1 | -4/+10 |
* | a mapper with inheritance will place itself as "dependent" on the inherited m... | Mike Bayer | 2006-03-06 | 1 | -1/+0 |
* | added new 'polymorphic' example. still trying to understand it :) . | Mike Bayer | 2006-03-06 | 1 | -3/+5 |
* | more tweak to compoundselect parenthesizing/subquery flag | Mike Bayer | 2006-03-06 | 1 | -4/+2 |
* | selects within a compound clause dont get parenthesis added | Mike Bayer | 2006-03-06 | 1 | -1/+9 |
* | got column onupdate working | Mike Bayer | 2006-03-05 | 1 | -0/+9 |
* | removed the dependency of ANSICompiler on SQLEngine. you can now make ANSICo... | Mike Bayer | 2006-03-04 | 1 | -21/+28 |
* | oid inits at compilation time/when needed again, added a unit test | Mike Bayer | 2006-02-28 | 1 | -4/+4 |
* | Merge indexes [1047]:[1048] into trunk (for #6) | Jason Pellerin | 2006-02-26 | 1 | -0/+3 |
* | fixed ticket 72, where a copied clause was using the identical bind param obj... | Mike Bayer | 2006-02-26 | 1 | -0/+2 |