summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2017-05-25Fixed #28211 -- Prevented ORing an empty Q() from reducing query join efficie...Tom
2017-05-24Fixed #27860 -- Dropped varchar_pattern_ops/text_pattern_ops index before alt...Mariusz Felisiak
2017-05-23Fixed #27859 -- Ignored db_index for TextField/BinaryField on Oracle and MySQL.Mariusz Felisiak
2017-05-23Refs #27859 -- Added DatabaseWrapper.display_name.Mariusz Felisiak
2017-05-19Fixed #28210 -- Fixed Model._state.adding on MTI parent model after saving ch...Tim Graham
2017-05-18Fixed #28206 -- Fixed RawQuerySet crash on a model with a mixed case db_colum...Mariusz Felisiak
2017-05-18Fixed #28152 -- Made migrations serialize sets as set literals rather than se...Jon Dufresne
2017-05-15Fixed #28197 -- Fixed introspection of index field ordering on PostgreSQL.Tim Schneider
2017-05-14Refs #27859 -- Refactored BaseDatabaseValidation to use check_field_type().Mariusz Felisiak
2017-05-11Fixed #24254 -- Fixed queries using the __in lookup with querysets using dist...Simon Charette
2017-05-11Fixed #28188 -- Fixed crash when pickling model fields.Tim Graham
2017-05-11Fixed #28107 -- Disabled grouping of selected primary keys for unmanaged models.Simon Charette
2017-05-09Pass type to sql_alter_column_* where it was missing.Florian Apolloner
2017-05-09Fixed #28164 -- Improved float conversions in DecimalField.to_pythonClaude Paroz
2017-05-06Fixed #28062 -- Added a setting to disable server-side cursors on PostgreSQL.François Freitag
2017-05-05Fixed #28175 -- Fixed __in lookups on a foreign key when using the foreign ke...Tim Graham
2017-05-04Fixed #27554 -- Fixed prefetch_related() crash when fetching relations in nes...François Freitag
2017-05-03Fixed #28166 -- Fixed Model._state.db on MTI parent model after saving child ...Tim Graham
2017-05-01Fixed typo in django/db/backends/base/schema.py comment.Tim Graham
2017-05-01Fixed #28052 -- Prevented dropping Meta.indexes when changing db_index to False.Markus Holtermann
2017-05-01Fixed #28043 -- Prevented AddIndex and RemoveIndex from mutating model state.Ian Foote
2017-05-01Refs #16187 -- Stopped compiling query compilers during lookup rhs processing.Simon Charette
2017-04-28Fixed #28138 -- Used ​output type handler instead of numbersAsStrings on Or...Mariusz Felisiak
2017-04-28Reverted "Refs #20939 -- Moved subquery ordering clearing optimization to the...Simon Charette
2017-04-27Refs #20939 -- Moved subquery ordering clearing optimization to the __in lookup.Simon Charette
2017-04-27Fixed force_text() import in Oracle backend.Tim Graham
2017-04-27Replaced set |= operator with update() to avoid temporary set.Jon Dufresne
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-04-25Refs #20939 -- Removed the Query._prepare_as_filter_value() hack.Simon Charette
2017-04-25Refs #20939 -- Removed the Query._forced_pk hack.Simon Charette
2017-04-25Refs #23919 -- Used "raise from" instead of __cause__ in reraising backend-sp...Mariusz Felisiak
2017-04-25Fixed #28116 -- Used error code filtering in PostgreSQL test database creation.Mariusz Felisiak
2017-04-24Fixed #28120 -- Checked that CharField.max_length is not a boolean.Carles Pina Estany
2017-04-23Fixed #28101 -- Fixed a regression with nested __in subquery lookups and to_f...Simon Charette
2017-04-21Updated Oracle docs links to Oracle 12c.Mariusz Felisiak
2017-04-19Fixed #28096 -- Allowed prefetch calls with ModelIterable subclassesClaude Paroz
2017-04-19Fix a typo in django/db/transaction.pyHuang Zhiqiang
2017-04-18Removed unused DatabaseIntrospection._name_to_index() from Oracle backend.Mariusz Felisiak
2017-04-17Refs #27795 -- Removed unneeded force_text calls from the Oracle backend.Mariusz Felisiak
2017-04-13Refs #25406 -- Removed exception hiding in MySQL test database creation durin...Mariusz Felisiak
2017-04-10Fixed #26788 -- Fixed QuerySet.update() crash when updating a geometry to ano...Sergey Fedoseev
2017-04-10Fixed #25406 -- Removed exception hiding in PostgreSQL test database creation...Mariusz Felisiak
2017-04-10Used NotSupportedError instead of DatabaseError in SQLCompiler.as_sql().Mariusz Felisiak
2017-04-10Fixed #28047 -- Fixed QuerySet.filter() crash when it uses the name of a OneT...Tim Graham
2017-04-07Fixed #28038 -- Restored casting to text of builtin lookups on PostgreSQL.Simon Charette
2017-04-07Fixed #28051 -- Made migrations respect Index's name argument.Markus Holtermann
2017-04-07Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker
2017-04-07Fixed #23147 -- Disabled a limit/offset on a query with select_for_update on ...Mariusz Felisiak
2017-04-03Refs #27834 -- Removed Value wrapping from StrIndex's substring param.Adam Johnson
2017-04-02Fixed #27928 -- Avoided SET/DROP DEFAULT unless a field changes from null to ...Simon Charette