summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2018-03-12Removed unused variable in BaseDatabaseSchemaEditor.effective_default().Дилян Палаузов
2018-03-01Refs #28459 -- Improved performance of time difference expressions on MySQL.Sergey Fedoseev
2018-02-26Refs #28909 -- Simplifed code using unpacking generalizations.Mariusz Felisiak
2018-02-10Fixed #24747 -- Allowed transforms in QuerySet.order_by() and distinct(*fields).Matthew Wilkes
2018-02-07Renamed the allow_sliced_subqueries database feature to allow_sliced_subqueri...Mariusz Felisiak
2018-01-31Removed uneeded comment in DatabaseWrapper.check_constraints() on SQLite/MySQ...Mariusz Felisiak
2018-01-27Fixed #29004 -- Added inspectdb --include-views option.bquinn
2018-01-27Fixed #28650 -- Added TruncWeek database function.Sigurd Ljødal
2018-01-13Fixed #28542 -- Fixed deletion of primary key constraint if the new field is ...Tim Martin
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2018-01-09Added DatabaseFeatures.is_postgresql_9_5 to avoid repetition.Tim Graham
2018-01-06Fixed #28859 -- Made Oracle backend raise DatabaseError if "no data found" ex...Mariusz Felisiak
2018-01-04Refs #28459 -- Improved performance of duration expressions on SQLite.Sergey Fedoseev
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-30Used Decimal.scaleb() in backends.utils.format_number() and DecimalField.widg...Mariusz Felisiak
2017-12-29Bumped minimum supported mysqlclient version to 1.3.7.Sergey Fedoseev
2017-12-29Refs #28459 -- Used default date converter on SQLite for better performance.Sergey Fedoseev
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-27Refs #28459 -- Improved performance of loading DurationField on SQLite and My...Sergey Fedoseev
2017-12-26Refs #28459 -- Improved performance of loading DecimalField on SQLite.Sergey Fedoseev
2017-12-22Fixed #28884 -- Fixed crash on SQLite when renaming a field in a model refere...Simon Charette
2017-12-21Refs #28909 -- Simplifed code using unpacking generalizations.Nick Pope
2017-12-21Refs #23941 -- Prevented incorrect rounding of DecimalField annotations on SQ...Sergey Fedoseev
2017-12-20Fixed #28932 -- Prevented Oracle from truncating trailing zeros in the fracti...Sergey Fedoseev
2017-12-20Fixed #28934 -- Prevented Cast from truncating microseconds on Oracle.Mariusz Felisiak
2017-12-19Fixed #28727 -- Fixed Cast crash on SQLite when casting a Python date/datetim...Mariusz Felisiak
2017-12-16Removed unused DatabaseOperations.date_interval_sql() on Oracle.Sergey Fedoseev
2017-12-12Fixed #28915 -- Prevented SQLite from truncating trailing zeros in the fracti...Sergey Fedoseev
2017-12-12Simplified SQLite converter for bool type.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-12-05Refs #28876 -- Fixed incorrect foreign key constraint name for models with qu...Mariusz Felisiak
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-12-01Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette
2017-12-01Fixed #28305 -- Fixed "Cannot change column 'x': used in a foreign key constr...Tim Graham
2017-11-29Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen
2017-11-28Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne
2017-11-28Fixed #28854 -- Replaced type(True) with bool in sqlite's SchemaEditor.Дилян Палаузов
2017-11-26Refs #27954 -- Fixed typo in django/db/backends/postgresql/client.py comment.Mariusz Felisiak
2017-11-23Used bytes.hex() and bytes.fromhex() to simplify.Sergey Fedoseev
2017-11-20Fixed #28804 -- Fixed "Unknown system variable 'transaction_isolation'" on Ma...Tim Graham
2017-11-14Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette
2017-11-14Fixed #28794 -- Fixed tx_isolation deprecation warning on MySQL 5.7.20+.Sergey Fedoseev
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-11-03Clarified error message for when sqlplarse isn't installed.Nick
2017-10-09Fixed #28670 -- Added FETCH/OFFSET support on Oracle.Mariusz Felisiak
2017-10-06Fixed #28665 -- Change some database exceptions to NotImplementedError per PE...Simon Charette
2017-10-05Fixed #28596 -- Fixed QuerySet.bulk_create() and cascade deletion crash on Or...Mariusz Felisiak
2017-10-04Refs #28670 -- Moved LIMIT/OFFSET SQL to DatabaseOperations.limit_offset_sql().Mariusz Felisiak