summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2010-12-08Replaced an ImportError with ImproperlyConfigured in the Oracle backend.Ian Kelly
2010-12-04Normalized the name order of arguments. There's no actual bug here, other tha...Russell Keith-Magee
2010-12-03Fixed #14700 -- ensure that a raw query is only executed once per iteration.Alex Gaynor
2010-12-03Added a regression test for r14781. Also fixed a bug where connection.vendor...Ian Kelly
2010-12-03Fixed the Oracle environment variables not getting set correctly under Cygwin.Ian Kelly
2010-12-01Fixed #11706: Added an Oracle connection option to disable the use of RETURNI...Ian Kelly
2010-12-01Fixed a bug in date queries with GIS backends introduced in [14715].Alex Gaynor
2010-11-26Fixed a suite of errors in the ORM -- a) fixed calling values_list().values_l...Alex Gaynor
2010-11-24Fixed #14700 - speed up RawQuerySet iterator.Luke Plant
2010-11-23Fixed #14697 - speeded up model instance creation by moving work outside of l...Luke Plant
2010-11-22Fixed #14754 -- corrected using an aggregate in an F expressions when that qu...Alex Gaynor
2010-11-21Fixed #3400 -- Support for lookup separator with list_filter admin option. Th...Honza Král
2010-11-21Added printing of the name of test database being created/destroyed, at verbo...Ramiro Morales
2010-11-21Fixed #14453 -- Changed handling of microseconds part in typecast_timestamp()...Ramiro Morales
2010-11-21Fixed #5768 -- Added support for ManyToManyFields and reverse relations in va...Carl Meyer
2010-11-19Corrected the way databases were compared. This allows running the test suit...Alex Gaynor
2010-11-18Fixed pk uniqueness validation for new objects created outside of a ModelForm...Carl Meyer
2010-11-18Fixed #14234 -- Re-validating a model instance added via ModelForm no longer ...Carl Meyer
2010-11-17Fixed #14257 -- removed ManyToManyField.isValidIDList which was completely de...Alex Gaynor
2010-11-17Fixed #14423 -- corrected incorrect SQL being generated when a nullable, inhe...Alex Gaynor
2010-11-17Fixed #11369 -- Corrected verbose_name_plural model Meta option to be consist...Ramiro Morales
2010-11-17Fixed #12687 -- fixed an issue with aggregates and counts in conjunction with...Alex Gaynor
2010-11-16Fixed #14691 -- Made ForeignKey.validate() use the right database. Thanks Mar...Ramiro Morales
2010-11-12Made the oracle backend throw the same ValueError as the mysql backend when a...Ian Kelly
2010-11-12Fixed a misapplied test skip feature in the oracle backend from r14139.Ian Kelly
2010-11-12Fixed #11101: Rewrote the sequence reset SQL for Oracle to prevent it from pe...Ian Kelly
2010-11-11Fixed error introduced in r14512.Ramiro Morales
2010-11-11Fixed small multi-db compatibility issue in the Oracle backend.Ramiro Morales
2010-11-11Implemented changes made in r14320 in the Oracle backend. Thanks Russell for ...Ramiro Morales
2010-11-09Fixed #7539, #13067 -- Added on_delete argument to ForeignKey to control casc...Carl Meyer
2010-11-07Fixed some Oracle backend test DB creation code bugs.Ramiro Morales
2010-11-06Fixed #14630 -- Increased maximum size of the Oracle tablespace datafile used...Ramiro Morales
2010-11-04Fixed a test failure introduced in [14461].Alex Gaynor
2010-11-04Fixed #13935, added support for using QuerySet.dates across related fields. ...Alex Gaynor
2010-11-02Fixed #10728 -- corrected subclassing of Fields who use the SubfieldBase meta...Alex Gaynor
2010-11-02Avoid an O(n**2) operation where O(n) will suffice. Possibly worth a second ...Alex Gaynor
2010-10-31When looking for django tables which exist, query for all tables once, not on...Alex Gaynor
2010-10-29Remove several uses of the deprecated dict.has_key in favor of the in operato...Alex Gaynor
2010-10-28Fixed #14471 -- Corrected a regression in the use of methods on custom manage...Russell Keith-Magee
2010-10-28Fixed #14517 -- Corrected the exception that is caught when testing for the a...Russell Keith-Magee
2010-10-24Fixed #14550 -- fixed the behavior of commit_on_success to exit the transacti...Alex Gaynor
2010-10-23Fixed #14223 -- Extended unification of exception raised in presence of integ...Ramiro Morales
2010-10-19Fixed #10771 -- added support for using the transaction management functions ...Alex Gaynor
2010-10-19Fixed a small typo introduced in r14139.Ramiro Morales
2010-10-15Change the stacklevel for Field deprecation warnings to correctly point to th...Chris Beaven
2010-10-13Fixed #12192 -- Don't execute any DB query when the QS slicing being performedRamiro Morales
2010-10-12Fixed #5416 -- Added TestCase.assertNumQueries, which tests that a given func...Alex Gaynor
2010-10-11Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...Russell Keith-Magee
2010-10-11Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnin...Russell Keith-Magee
2010-10-10Refs #11256 -- Extended the annotation field name conflict check to cover m2m...Carl Meyer