summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/query.py
Commit message (Expand)AuthorAgeFilesLines
* more docs on thisMike Bayer2010-09-121-10/+8
* unify query.with_parent, util.with_parent, fix docs some moreMike Bayer2010-09-061-37/+18
* - query.with_parent() now accepts transient objectsMike Bayer2010-09-061-16/+31
* almost through.Mike Bayer2010-09-041-2/+7
* Apply more memoization to Mapper attributes & subject to group expiry.Jason Kirtland2010-09-031-2/+6
* docstring for query.correlate, [ticket:1889]Mike Bayer2010-08-291-3/+22
* get slightly better about deprecations in docstrings, tho this is kind of an ...Mike Bayer2010-08-091-1/+3
* - some of the refinements from the sa_synonyms branch which willMike Bayer2010-08-081-3/+3
* - worked through about 25% of mappers.rst to implementMike Bayer2010-08-011-4/+21
* - Column-entities (i.e. query(Foo.id)) copy theirrel_0_6_3Mike Bayer2010-07-151-2/+4
* - added "expr" to the column descriptions accessor, this isMike Bayer2010-07-081-4/+10
* - 78 charsMike Bayer2010-07-081-19/+69
* - Query.join() will check for a call of theMike Bayer2010-07-011-3/+12
* - query.order_by() now accepts False, which cancelsMike Bayer2010-06-171-9/+26
* - Query.statement, Query.subquery(), etc. now transferMike Bayer2010-06-141-2/+5
* - Pool classes will reuse the same "pool_logging_name" settingMike Bayer2010-05-301-4/+1
* some pep-8ingMike Bayer2010-05-131-216/+388
* - Added with_hint() method to Query() construct. This callsMike Bayer2010-03-271-1/+24
* - fix some final pathing stuff, we weren't getting all the loads in theMike Bayer2010-03-241-9/+16
* - made final refinements to the feature and we are 100% go on subquery loading.Mike Bayer2010-03-241-1/+13
* - removed need for _subq_aliasing workaroundMike Bayer2010-03-241-7/+1
* everything everything passes on this one. still want to get rid of that hack...Mike Bayer2010-03-241-1/+2
* this version works with *all* the polymorphic scenarios by putting the subque...Mike Bayer2010-03-241-2/+1
* - Query.join() will detect if the end result will beMike Bayer2010-03-241-0/+7
* getting inheritance to work. some complex cases may have to fail for the tim...Mike Bayer2010-03-231-8/+15
* - added add_columns() to Query - pending deprecates add_column()Mike Bayer2010-03-231-3/+12
* this version actually works for all existing tests plus simple self-referential.Mike Bayer2010-03-231-7/+8
* and here's where it gets *fun* ! so much for being easyMike Bayer2010-03-221-1/+2
* - Fixed bug in Query whereby calling q.join(prop).from_self(...).Mike Bayer2010-03-221-3/+5
* - Fixed bug whereby calling query(A).join(A.bs).add_entity(B)Mike Bayer2010-03-191-1/+2
* - The official name for the relation() function is nowMike Bayer2010-03-171-8/+8
* - query.get() now returns None if queried for an identifierMike Bayer2010-03-131-12/+18
* formattingMike Bayer2010-03-111-4/+4
* - query.scalar() now raises an exception if more than oneMike Bayer2010-03-111-3/+10
* - Calling query.order_by() or query.distinct() before callingMike Bayer2010-03-111-2/+6
* fixed up docs for execution_options() across all three locations.Mike Bayer2010-03-091-7/+7
* - A major fix in query.join(), when the "on" clause is anMike Bayer2010-02-241-8/+23
* - query.one() no longer applies LIMIT to the query, this toMike Bayer2010-02-141-31/+64
* - Documentation clarification for query.delete()Mike Bayer2010-02-131-4/+8
* - reduced a bit of overhead in attribute expiration, particularlyMike Bayer2010-02-131-2/+3
* - Query called in the context of an expression will renderMike Bayer2010-02-081-2/+12
* not ready to put execution_options in the text()/select() constructors yetMike Bayer2010-01-241-2/+5
* - query.select_from() also accepts mapped classes, aliased()Mike Bayer2010-01-201-2/+12
* statement_options -> execution_optionsMike Bayer2010-01-171-12/+14
* - added "statement_options()" to Query, to so options can beMike Bayer2010-01-161-8/+32
* restore common_parent logic in correspoinds_to, fixes [ticket:1657]Mike Bayer2010-01-151-2/+2
* NamedTuple is pickleable ! no really with all the protocols too !Mike Bayer2010-01-131-3/+2
* OK, you can't merge NamedTuples and such. Fine. New query method.Mike Bayer2010-01-121-0/+53
* have paths represented as their actual mapper, not the base mapper, allowingMike Bayer2010-01-111-3/+3
* - cut down on a few hundred method callsMike Bayer2010-01-111-1/+1