summaryrefslogtreecommitdiff
path: root/tests/regressiontests/queries
AgeCommit message (Expand)Author
2011-03-03Updated test assertions that have been deprecated by the move to unittest2. I...Russell Keith-Magee
2011-03-03Fixed #12252 -- Ensure that queryset unions are commutative. Thanks to benrey...Russell Keith-Magee
2011-01-25Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no...Carl Meyer
2011-01-18Refs #14661 -- Corrected (well... hacked around) a test failure under MySQL/M...Russell Keith-Magee
2010-12-18Fixed a couple of tests migrated to unit tests in r14279 so they actually and...Ramiro Morales
2010-11-26Fixed a suite of errors in the ORM -- a) fixed calling values_list().values_l...Alex Gaynor
2010-11-16Added a test for using an `__in` lookup with a ValueListQueryset from a none(...Alex Gaynor
2010-10-19Fixed errors introduced in r14279 when running Django tests under Python < 2.6.Ramiro Morales
2010-10-19Converted queries tests from doctests to unittests.Ramiro Morales
2010-10-19Fixed a small typo introduced in r14139.Ramiro Morales
2010-10-13Fixed #12192 -- Don't execute any DB query when the QS slicing being performedRamiro Morales
2010-10-11Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...Russell Keith-Magee
2010-10-09Fixed #14011 -- Doing a subquery with __in and an EmptyQuerySet no longer rai...Alex Gaynor
2010-10-09Fixed #14366 -- Model.objects.none().values() now correctly returns a QuerySe...Alex Gaynor
2010-09-16Fixed #14244: Allow lists of more than 1000 items to be used with the 'in' lo...Ian Kelly
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-15Fixed a test failure under Postgres caused by primary key sequence allocation.Russell Keith-Magee
2010-04-13Fixed #13227 -- Ensure that the query cache is flushed when a QuerySet is dee...Russell Keith-Magee
2010-04-04Fixed #12328 -- Corrected the handling of subqueries with ordering and slicin...Russell Keith-Magee
2010-03-27Fixed #13227 -- Modified ForeignKeys to fully honor the db_prep/prep separati...Russell Keith-Magee
2010-03-20Fixed #12239: Fixed results of gte and lt queries when comparing floats to in...Karen Tracey
2010-03-20Fixed #13156 -- Ensure that exists() queries are as fast as they can be. Than...Russell Keith-Magee
2010-01-09Fixed #7235 -- EmptyQuerySet no longer raises and exception when it's filter(...Adrian Holovaty
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-11-19Fixed #12242 -- Corrected a problem with masking extra selects() in a DateQue...Russell Keith-Magee
2009-08-20Fixed an assumed ordering in the queries regression tests by making it explicit.Matt Boersma
2009-06-07Fixed #11274 -- Corrected doctests to not cause test failures due to missing ...Brian Rosner
2009-06-06Fixed #11082 -- Ensured that subqueries used in an exclude(X__in=) clause are...Russell Keith-Magee
2009-04-22Added a `QuerySet.ordered` property to check if a queryset is already ordered...Jacob Kaplan-Moss
2009-04-12Added a test from Jamie Gennis to ensure #9848 doesn't reappear.Malcolm Tredinnick
2009-03-24Fixed #9926 -- Fixes for some select_related() situations.Malcolm Tredinnick
2009-03-23Fixed a false failure in the test suite when running Oracle.Ian Kelly
2009-03-20Fixed #10547 -- Worked around some odd behaviour in Python 2.3 and 2.4.Malcolm Tredinnick
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-08Fixed #10432 -- Handle all kinds of iterators in queryset filters.Malcolm Tredinnick
2009-03-02Fixed #10181 -- Handle an EmptyResultSet exception case properly in nested qu...Malcolm Tredinnick
2009-03-01Fixed insert/update handling when no database interaction is required.Malcolm Tredinnick
2009-03-01Fixed #10202 -- Fixed another couple of slicing edge-cases with querysets.Malcolm Tredinnick
2009-02-28Fixed #10028 -- Fixed a problem when ordering by related models.Malcolm Tredinnick
2009-01-16Fixed #9997 -- Fixed use of ValuesQuerySets as rvalues in filters.Malcolm Tredinnick
2009-01-08Fixed #9985 -- qs.values_list(...).values(...) was constructing incorrect SQL.Malcolm Tredinnick
2009-01-08Using querysets as an rvalue in filter() calls was causing an unnecessaryMalcolm Tredinnick
2009-01-05Nested query support.Malcolm Tredinnick
2009-01-05Reconciling where- and having-clause behaviour.Malcolm Tredinnick
2008-12-10If an SQL query doesn't specify any ordering, avoid the implicit sortMalcolm Tredinnick
2008-12-08This fixes a group of problems in the SQL created by QuerySet.exclude() whenMalcolm Tredinnick
2008-12-07Fixed #9188 -- Fixed a case where we were generating syntactically invalid SQ...Malcolm Tredinnick
2008-10-24Fixed #9411 -- Changed the test from r9081 to be more robust across different...Malcolm Tredinnick
2008-10-10Fixed .distinct() not working with slicing in Oracle, due to the Ian Kelly
2008-10-08A queryset that has had ordering removed (order_by()) can have ordering addedMalcolm Tredinnick