summaryrefslogtreecommitdiff
path: root/test/orm/query.py
Commit message (Expand)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-3012/+0
* - Fixed Query being able to join() from individual columns ofMike Bayer2009-06-051-0/+10
* - removed test.testing.ORMTest, test.fixtures, and allMike Bayer2009-06-021-202/+159
* - Significant performance enhancements regarding Sessions/flush()Mike Bayer2009-05-171-1/+1
* this falls back to "expire" in any case since concat_op is not supported by t...Mike Bayer2009-05-021-1/+1
* Query.update() and Query.delete() should turn off eagerloads. Fixes #1378.Ants Aasma2009-04-201-0/+51
* - An alias() of a select() will convert to a "scalar subquery"Mike Bayer2009-03-211-2/+11
* - Query.group_by() properly takes into account aliasing appliedMike Bayer2009-03-081-0/+14
* unit test fixesMike Bayer2009-01-281-7/+9
* - Query now implements __clause_element__() which producesMike Bayer2009-01-271-3/+43
* - refined and clarified query.__join() for readabilityrel_0_5_2Mike Bayer2009-01-241-0/+36
* - The "clear()", "save()", "update()", "save_or_update()"Mike Bayer2009-01-171-38/+38
* - Query.from_self() as well as query.subquery() both disableMike Bayer2009-01-151-2/+66
* - query.join() raises an error when the target of the joinMike Bayer2009-01-061-0/+32
* added order_by test coverage as per [ticket:1218]Mike Bayer2009-01-031-0/+20
* - Fixed some deep "column correspondence" issues which couldMike Bayer2009-01-031-1/+14
* - Can pass mapped attributes and column objects as keysMike Bayer2008-12-281-1/+9
* - Query() can be passed a "composite" attributeMike Bayer2008-12-181-24/+6
* Modified fails_on testing decorator to take a reason for the failure.Michael Trier2008-12-121-4/+4
* Broke out a specific values test and indicated that it fails on mssql due to ...Michael Trier2008-12-121-4/+12
* Corrected problem with bindparams not working properly with Query.delete and ...Michael Trier2008-12-111-1/+22
* - first() works as expected with Query.from_statement().Mike Bayer2008-12-101-16/+4
* - Comparison of many-to-one relation to NULL isMike Bayer2008-11-211-1/+11
* - Query.select_from(), from_statement() ensureMike Bayer2008-11-161-0/+27
* Pulled out values test that uses boolean evaluation in the SELECT in order to...Michael Trier2008-11-141-4/+10
* Fixed up a lot of missing order_by statements in the tests when using offset....Michael Trier2008-11-141-9/+9
* The str(query) output is also correct on the mssql dialect.Michael Trier2008-11-141-1/+1
* - Restored NotImplementedError on Cls.relation.in_()Mike Bayer2008-11-101-0/+3
* - Query.count() has been enhanced to do the "rightMike Bayer2008-11-091-4/+45
* - Query.count() and Query.get() return a more informativeMike Bayer2008-11-081-0/+8
* - Fixed bug in Query involving order_by() in conjunction withMike Bayer2008-11-061-2/+2
* Added a label for pg.Jason Kirtland2008-11-031-1/+1
* - Fixed bug when using multiple query.join() with an aliased-boundMike Bayer2008-11-031-2/+12
* - Improved the behavior of aliased() objects such that they moreMike Bayer2008-11-031-44/+52
* Added tests for Query.scalar(), .value() [ticket:1163]Jason Kirtland2008-11-031-1/+21
* revert r5220 inadvertently committed to trunkMike Bayer2008-11-021-50/+37
* progress so farMike Bayer2008-11-021-37/+50
* Corrected some ordering issues with tests.Michael Trier2008-11-021-6/+5
* - When using Query.join() with an explicit clause for theMike Bayer2008-10-251-0/+18
* - "not equals" comparisons of simple many-to-one relationMike Bayer2008-10-181-1/+11
* - fix outerjoin, add order_by for DB varianceMike Bayer2008-10-041-4/+3
* - using contains_eager() against an alias combined with an overall query alia...Mike Bayer2008-10-041-7/+51
* - Fixed up slices on Query (i.e. query[x:y]) to work properlyMike Bayer2008-09-281-1/+41
* more failing casesMike Bayer2008-09-181-2/+59
* - "non-batch" mode in mapper(), a feature which allowsMike Bayer2008-09-181-4/+78
* - Added scalar() and value() methods to Query, each return aMike Bayer2008-09-111-0/+1
* - The exists() construct won't "export" its contained listMike Bayer2008-09-081-1/+1
* - query.order_by().get() silently drops the "ORDER BY" fromMike Bayer2008-09-061-0/+6
* Make Query.update and Query.delete return the amount of rows matchedAnts Aasma2008-09-021-0/+17
* - expire/fetch strategies are now default for Query.update/Query.delete.Ants Aasma2008-08-251-5/+5