summaryrefslogtreecommitdiff
path: root/django/db/backends/mysql/operations.py
AgeCommit message (Expand)Author
2018-12-05Fixed #30013 -- Fixed DatabaseOperations.last_executed_query() with mysqlclie...Tim Graham
2018-10-15Fixed #29845 -- Fixed Cast crash on MySQL when casting to DecimalField.Mariusz Felisiak
2018-10-09Simplified handling of DurationField values on MySQL/MariaDB.Sergey Fedoseev
2018-10-03Refs #27795 -- Removed force_bytes() usage in MySQL backend.Jon Dufresne
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-08-18Fixed #28649 -- Added ExtractIsoYear database function and iso_year lookup.Sigurd Ljødal
2018-08-03Fixed #28668 -- Allowed QuerySet.bulk_create() to ignore insert conflicts.Tom
2018-07-25Fixed #29569 -- Fixed Cast() with AutoField and BigAutoField.Mariusz Felisiak
2018-07-09Refs #29548 -- Fixed non-GIS test failures on MariaDB.Tom Forbes
2018-07-05Fixed #29544 -- Fixed regex lookup on MariaDB.Michal Čihař
2018-06-20Refs #29451 -- Fixed regex/iregex lookups on MySQL 8.Tom
2018-04-19Fixed #28574 -- Added QuerySet.explain().Tom
2018-03-12Fixed #29209 -- Fixed Cast() with TextField on MySQL and Oracle.Sergey Fedoseev
2018-03-01Refs #28459 -- Improved performance of time difference expressions on MySQL.Sergey Fedoseev
2018-01-27Fixed #28650 -- Added TruncWeek database function.Sigurd Ljødal
2017-12-28Fixed #28926 -- Fixed loss of precision of big DurationField values on SQLite...Sergey Fedoseev
2017-12-27Fixed #28967 -- Prevented Cast to FloatField from rounding to integer on MySQL.Sergey Fedoseev
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-08Improved performance of loading DateTimeField on Oracle and MySQL.Sergey Fedoseev
2017-09-25Fixed #28552 -- Dropped support for MySQL 5.5.Tim Graham
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-06Fixed #28365 -- Unified DatabaseOperations.date_interval_sql() return value w...Mariusz Felisiak
2017-06-08Fixed #28103 -- Added quarter extract, truncation, and lookup.Mads Jensen
2017-04-10Fixed #26788 -- Fixed QuerySet.update() crash when updating a geometry to ano...Sergey Fedoseev
2017-02-06Fixed #27802 -- Unified return value of db backend datetime SQL methods.Mariusz Felisiak
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #26285 -- Removed MySQL __search lookup per deprecation timeline.Tim Graham
2017-01-03Fixed #25912 -- Added binary left/right shift operators to F expressions.anabelensc
2017-01-03Fixed #27681 -- Fixed binary &/| operators for negative values on MySQL.Mariusz Felisiak
2016-11-23Fixed #24959 -- Fixed queries using negative timedeltas on MySQL and Oracle.Mariusz Felisiak
2016-11-11Fixed #25240 -- Added ExtractWeek and exposed it through the __week lookup.Mads Jensen
2016-08-19Fixed #22288 -- Fixed F() expressions with the __range lookup.Matthew Wilkes
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-04-08Fixed E128 flake8 warnings in django/.Tim Graham
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
2015-11-24Fixed #25767 -- Fixed data truncation possibility with Positive(Small)Integer...George Marshall
2015-10-21Fixed #25470 -- Avoided unnecessary, expensive DATETIME typecast on MySQL.Mariusz Felisiak
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-06-02Fixed #9596 -- Added date transform for DateTimeField.Jon Dufresne
2015-05-17Fixed #23820 -- Supported per-database time zone.Aymeric Augustin
2015-05-17Renamed value_to_db_xxx to adapt_xxxfield_value.Aymeric Augustin
2015-05-17Normalized the implementation of get_db_converters.Aymeric Augustin