summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2011-01-13Fixed #13668 -- Corrected database router methods invocation for ManyToMany f...Ramiro Morales
2011-01-122 small optimizations: a) move an import out of a function, b) remove a cache...Alex Gaynor
2011-01-11Fixed #11293 -- fixed using Q objects to generate ORs with aggregates.Alex Gaynor
2011-01-10Fix wrong attribute name in [15156]. Thanks to Alex Gaynor for spotting this.Andrew Godwin
2011-01-09Fixed #14951 -- Made the unique_for_{date,month,year} model field constraints...Ramiro Morales
2011-01-08Fixed #9029 -- Allow use of fieldname_id with get_or_create. Thanks to aaron ...Andrew Godwin
2011-01-03Fixed #15006 -- Removed some stray tabs in python code. Thanks to vanschelven...Russell Keith-Magee
2010-12-22Fixed #10154: Allow combining F expressions with timedelta values.Karen Tracey
2010-12-21Small performance tweak - avoid loading django.core.management in DB backend ...Luke Plant
2010-12-21Fixed #11675 -- Added support for the PyLibMC cache library. In order to supp...Russell Keith-Magee
2010-12-21Fixed #14921 -- Tweak changes made in r14861 for the Oracle backend so the te...Ramiro Morales
2010-12-12Fixed #12955 -- Use the size attribute of the file instead of len() to suppor...Jannis Leidel
2010-12-08Fixed error introduced in r14666 that results in the message reporting the te...Ramiro Morales
2010-12-08Fixed the world's ugliest syntax (that's not an actual error) that snuck in w...Alex Gaynor
2010-12-08Fixed #14870 -- don't catch AttributeErrors in database router methods, inste...Alex Gaynor
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