summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2024-04-16Fixed #35373 -- Fixed a crash when indexing a generated field on SQLite.Simon Charette
2024-04-15Fixed backends.oracle.tests.TransactionalTests.test_hidden_no_data_found_exce...Mariusz Felisiak
2024-04-10Fixed #35350 -- Fixed save() with pk set on models with GeneratedFields.Sarah Boyce
2024-04-02Fixed #35336 -- Addressed crash when adding a GeneratedField with % literals.Simon Charette
2024-04-01Fixed #35344, Refs #34838 -- Corrected output_field of resolved columns for G...Johannes Westphal
2024-03-30Refs #35234 -- Skipped CheckConstraint system checks if not supported.Mariusz Felisiak
2024-03-26Fixed #35329 -- Fixed migrations crash when adding partial unique constraints...Mariusz Felisiak
2024-03-25Removed unused _alter_column_collation_sql() in PostgreSQL DatabaseSchemaEditor.Mariusz Felisiak
2024-03-22Fixed #34841 -- Avoided rendering apps on state still requiring mutation.David Sanders
2024-03-21Fixed #35257 -- Corrected resolving output_field for IntegerField/DecimalFiel...sharonwoo
2024-03-20Fixed #35309 -- Made prefetch clear ordering for single-valued relationships.Laurent Lyaudet
2024-03-17Fixed #35301 -- Fixed Options._property_names for overriden properties.Adam Johnson
2024-03-16Stopped skipping model_fields.test_jsonfield.TestQuerying.test_usage_in_subqu...Mariusz Felisiak
2024-03-15Refs #33996 -- Updated CheckConstraint validation on NULL values on Oracle 23c+.Mariusz Felisiak
2024-03-15Fixed #35294 -- Fixed TEXT format of QuerySet.explain() for long plans.Adam Johnson
2024-03-14Fixed #28541 -- Fixed migrations crash when changing primary key on SQLite.Ben Cail
2024-03-14Fixed #35295 -- Used INSERT with multiple rows on Oracle 23c.Mariusz Felisiak
2024-03-14Refs #35295 -- Added BaseDatabaseOperations.bulk_insert_sql().Mariusz Felisiak
2024-03-13Refs #32673, Refs #35295 -- Avoided wrapping rhs direct values in lookups.Mariusz Felisiak
2024-03-11Optimized DatabaseOperations.bulk_insert_sql() a bit on Oracle.Mariusz Felisiak
2024-03-11Fixed #35285 -- Optimized ForeignObject._check_unique_target().Adam Johnson
2024-03-09Fixed #35270 -- Optimized model's Options._property_names.Adam Johnson
2024-03-08Fixed #35044 -- Avoided clearing reverse relations and private fields when ac...Giannis Terzopoulos
2024-03-08Optimized Model.refresh_from_db(fields=...) by using a set.Giannis Terzopoulos
2024-03-08Fixed #35223 -- Made Model.full_clean() ignore fields with db_default when va...Ben Cail
2024-03-08Refs #30397 -- Optimized interpolation of index and constraint names a bit more.Nick Pope
2024-03-07Fixed typo in django/db/models/expressions.py.Mariusz Felisiak
2024-03-07Refs #30397 -- Optimized interpolation of index and constraint names a bit.Adam Johnson
2024-03-06Fixed #35021 -- Fixed capturing queries when using client-side parameters bin...Michail Chatzis
2024-03-04Fixed #35266 -- Deferred formatting in RelatedField._check_clashes().Adam Johnson
2024-03-01Refs #33497 -- Added connection pool support for PostgreSQL.Sarah Boyce
2024-03-01Refs #35234 -- Deprecated CheckConstraint.check in favor of .condition.Simon Charette
2024-02-29Refs #35234 -- Moved constraint system checks to Check/UniqueConstraint methods.Simon Charette
2024-02-26Refs #34200 -- Removed unnecessary check in DatabaseWrapper.ensure_role() on ...Florian Apolloner
2024-02-26Fixed #35246 -- Made Field.unique a cached property.Adam Johnson
2024-02-26Fixed #35241 -- Cached model's full parent list.Adam Johnson
2024-02-23Simplified using DATABASES["OPTIONS"].Florian Apolloner
2024-02-20Fixed #35238 -- Fixed database serialization crash when base managers use pre...AlexCLeduc
2024-02-20Fixed #35236 -- Used Field.attname/column attributes instead of get_attname()...Adam Johnson
2024-02-19Refs #28011 -- Removed ForeignObjectRel.is_hidden().Adam Johnson
2024-02-19Refs #34060 -- Fixed JSONField __exact lookup for primitivies on Oracle 21c+.Albert Defler
2024-02-19Fixed #35232 -- Cached model's Options.verbose_name_raw.Adam Johnson
2024-02-19Fixed #35230 -- Added cached ForeignObjectRel.accessor_name.Adam Johnson
2024-02-16Fixed #24018 -- Allowed setting pragma options on SQLite.Aaron Linville
2024-02-16Fixed #29725 -- Removed unnecessary join in QuerySet.count() and exists() on ...ontowhee
2024-02-16Refs #34060 -- Fixed crash when filtering against literal JSON with psycopg2.Simon Charette
2024-02-15Fixed #34060 -- Fixed migrations crash when adding check constraints with JSO...Albert Defler
2024-02-15Fixed #33037 -- Fixed Trunc() with offset timezones on MySQL, SQLite, Oracle.Shafiya Adzhani
2024-02-09Refs #34534 -- Reduced constraint operations with Meta.constraints when optim...Ben Cail
2024-02-08Fixed #35073 -- Avoided unnecessary calling of callables used by SET/SET_DEFA...bcail