summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* clauseelement.compile() totally works without an engineMike Bayer2006-02-251-0/+2
* merged sql_rearrangement branch , refactors sql package to work standalone withMike Bayer2006-02-251-221/+95
* Function needed compare_type so that its type is set as the type in boolean e...Mike Bayer2006-02-231-1/+3
* fix to EagerLoad where it late-initializes its eager chain, thereby not getti...Mike Bayer2006-02-221-1/+1
* merged eager loading overhaul rev 1001:1009Mike Bayer2006-02-201-13/+37
* exception package added, support throughoutMike Bayer2006-02-191-7/+8
* added indexes to schema/ansisql/engineMike Bayer2006-02-181-0/+21
* Join object wasnt exporting foreign keys correctlyMike Bayer2006-02-161-2/+2
* fixes mostly to get the important unit tests to run for Oracle, boxesw withou...Mike Bayer2006-02-141-1/+1
* more hammering of defaults. ORM will properly execute defaults and post-fetc...Mike Bayer2006-02-111-3/+6
* got oracle LIMIT/OFFSET to use row_number() syntaxMike Bayer2006-02-051-1/+1
* added BETWEEN, courtesy Rick Morrison. go Rick !Mike Bayer2006-02-041-1/+4
* self->compare_self()Mike Bayer2006-02-021-1/+1
* might add scalar() to select which does limit=1Mike Bayer2006-02-011-0/+15
* 2nd scalar fixMike Bayer2006-01-271-1/+5
* scalar() returns None if no rowsMike Bayer2006-01-271-1/+5
* refactoring to allow column.label() to work in selects, etc.Mike Bayer2006-01-271-62/+75
* order_by and group_by being output in wrong order. Added tests for same.Robert Leftwich2006-01-221-6/+6