summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2017-06-06Refs #20483 -- Removed unneeded column from _foreign_key_constraints() on Ora...Mariusz Felisiak
2017-06-05Replaced Model._get_pk_val() with pk property.Tim Graham
2017-06-05Fixed #28269 -- Fixed Model.__init__() crash on models with a field that has ...Adam Johnson
2017-06-02Fixed #28260 -- Allowed customizing the test tablespace initial and autoexten...Mariusz Felisiak
2017-06-02Fixed #28258 -- Optimized Oracle introspection by using LISTAGG.Mariusz Felisiak
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-06-01Fixed #27639 -- Added chunk_size parameter to QuerySet.iterator().François Freitag
2017-06-01Refs #26682 -- Added AutoField introspection on Oracle.Mariusz Felisiak
2017-06-01Fixed #26682 -- Added support for Oracle identity columns.Mariusz Felisiak
2017-06-01Fixed #28242 -- Moved ImageField file extension validation to the form field.Manatsawin Hanmongkolchai
2017-05-31Fixed #22550 -- Prohibited QuerySet.last()/reverse() after slicing.Matthias Erll
2017-05-30Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.Tim Graham
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-05-27Fixed #28226 -- Replaced use of str.join() with concatenation.Tom
2017-05-27Fixed #28222 -- Allowed settable properties in QuerySet.update_or_create()/ge...Alex
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