summaryrefslogtreecommitdiff
path: root/django/db/backends/base/operations.py
AgeCommit message (Expand)Author
2018-11-09Fixed #29934 -- Added sqlparse as a require dependency.Tim Graham
2018-08-03Fixed #28668 -- Allowed QuerySet.bulk_create() to ignore insert conflicts.Tom
2018-04-19Fixed #28574 -- Added QuerySet.explain().Tom
2018-02-10Fixed #24747 -- Allowed transforms in QuerySet.order_by() and distinct(*fields).Matthew Wilkes
2017-12-27Refs #28459 -- Improved performance of loading DurationField on SQLite and My...Sergey Fedoseev
2017-11-03Clarified error message for when sqlplarse isn't installed.Nick
2017-10-06Fixed #28665 -- Change some database exceptions to NotImplementedError per PE...Simon Charette
2017-10-04Refs #28670 -- Moved LIMIT/OFFSET SQL to DatabaseOperations.limit_offset_sql().Mariusz Felisiak
2017-09-30Corrected typos in BaseDatabaseOperations exception messages.Mads Jensen
2017-09-29Used NotSupportedError for some unsupported database opreations per PEP 249.Mads Jensen
2017-09-18Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen
2017-07-27Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't ...Mariusz Felisiak
2017-07-26Allowed database backends to specify data types for Cast().Mariusz Felisiak
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and Expre...Tim Graham
2017-07-11Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz
2017-06-29Fixed #28010 -- Added FOR UPDATE OF support to QuerySet.select_for_update().Ran Benita
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-02-27Refs #27802 -- Corrected BaseDatabaseOperations.datetime_extract/trunc_sql() ...Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-17Refs #26285 -- Removed MySQL __search lookup per deprecation timeline.Tim Graham
2017-01-17Refs #24154 -- Removed deprecated BaseDatabaseOperations.check_aggregate_supp...Tim Graham
2017-01-14Fixed #27718 -- Added QuerySet.union(), intersection(), difference().Florian Apolloner
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
2016-08-08Fixed #26500 -- Added SKIP LOCKED support to select_for_update().Simon Charette
2016-07-27Fixed #26950 -- Removed obsolete DatabaseOperations SQL methods.Anderson Resende
2016-07-08Fixed #26348 -- Added TruncTime and exposed it through the __time lookup.Simon Charette
2016-07-08Refs #25774, #26348 -- Allowed Trunc functions to operate with time fields.Simon Charette
2016-05-03Normalized "an SQL" spelling.Ville Skyttä
2016-04-29Fixed #26557 -- Converted empty strings to None when saving GenericIPAddressF...Joshua Phillips
2016-03-14Fixed #26140 -- Suppressed MySQL warning when inserting binary contentClaude Paroz
2016-03-02Fixed #26285 -- Deprecated the MySQL-specific __search lookup.Marc Tamlyn
2016-02-26Fixed #24793 -- Unified temporal difference support.Simon Charette
2016-02-17Fixed #26219 -- Fixed crash when filtering by Decimal in RawQuery.Akshesh
2016-01-25Fixed #26125 -- Fixed E731 flake warnings.userimack
2016-01-11Added missing period to "etc.".pp
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-07-01Removed datetime_cast_sql, which is never overridden or used anywhere in Django.Shai Berger
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
2015-06-04Fixed #22316 -- Added time filters to TimeField on SQLite.Matthew Somerville
2015-06-02Fixed #9596 -- Added date transform for DateTimeField.Jon Dufresne
2015-05-17Renamed value_to_db_xxx to adapt_xxxfield_value.Aymeric Augustin
2015-05-17Removed global timezone-aware datetime adapters.Aymeric Augustin
2015-05-17Normalized the implementation of get_db_converters.Aymeric Augustin
2015-02-22Fixed signature of BaseDatabaseOperations.date_interval_sql() and document th...Michael Manfre
2015-02-20Update converters to take a consistent set of parameters.Marc Tamlyn
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-27Fixed #24154 -- Backends can now check support for expressionsJosh Smeaton
2015-01-17Required sqlparse for SQL splitting per deprecation timeline.Tim Graham