summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Collapse)Author
2017-02-27Refs #27802 -- Corrected BaseDatabaseOperations.datetime_extract/trunc_sql() ↵Tim Graham
docstrings.
2017-02-27Refs #27843 -- Fixed 'invalid escape sequence' warning in truncate_name().Tim Graham
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-21Refs #26285 -- Removed postgresql's unused ↵Tim Graham
DatabaseOperations.fulltext_search_sql(). Should have been removed in 5139832398624be75ee5361a6fac9348fdb61093.
2017-02-21Fixed #27856 -- Improved accuracy of date subtraction on PostgreSQL.Vytis Banaitis
Accuracy was incorrect when dates differ by a month or more.
2017-02-17Fixed #27843 -- Fixed truncate_name() when the name contains a username.Mariusz Felisiak
2017-02-15Fixed #27135 -- Made index introspection return Index.suffix.Tim Graham
2017-02-09Fixed #22669 -- Fixed QuerySet.bulk_create() with empty model fields on Oracle.Mikhail Nacharov
2017-02-09Fixed #25898 -- Made test database/user creation on Oracle reraise ↵Mariusz Felisiak
unexpected errors. Thanks Shai Berger and Tim Graham for review.
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-02-09Fixed #27822 -- Replaced deprecated cx_Oracle types in ↵Mariusz Felisiak
DatabaseIntrospection.data_types_reverse.
2017-02-06Fixed #27802 -- Unified return value of db backend datetime SQL methods.Mariusz Felisiak
2017-02-01Fixed #27683 -- Made MySQL default to the read committed isolation level.Tim Graham
Thanks Shai Berger for test help and Adam Johnson for review.
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-30Refs #23919 -- Removed usage of obsolete SafeBytes classClaude Paroz
The class will be removed as part of #27753. Thanks Tim Graham for the review.
2017-01-30Fixed #27789 -- Simplified query for sequence value on Oracle.Mariusz Felisiak
2017-01-28Fixed #27788 -- Dropped support for Oracle < 12.1.Tim Graham
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-25Refs #23919 -- Removed obsolete MySQLdb references.Tim Graham
2017-01-25Refs #25175 -- Deprecated db.backends.postgresql_psycopg2 module.Tim Graham
2017-01-25Removed unused variables that are overwritten.Mads Jensen
2017-01-24Refs #23919 -- Removed a MySQLdb workaround (refs #6052) for Python 2.Tim Graham
2017-01-23Removed MySQL decimal casting.Tim Graham
Added in Django 1.0: 92c35a0617836b09aef3b6909579ee368004969b Unknown when it became obsolete.
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-20Refs #23919 -- Removed pysqlite support (it's Python 2 only).Tim Graham
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Removed Python 2 workaround for hashing Oracle params (refs ↵Mariusz Felisiak
#27632).
2017-01-19Fixed spelling mistakes in code and comments.james mike dupont
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
Thanks Tim Graham and Simon Charette for the reviews.
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
Thanks Tim Graham for the review.
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-17Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham
2017-01-17Refs #19738 -- Removed timezone conversion in SQL queries executed outside ↵Tim Graham
of the ORM. Per deprecation timeline.
2017-01-17Refs #24154 -- Removed deprecated ↵Tim Graham
BaseDatabaseOperations.check_aggregate_support().
2017-01-17Refs #27683 -- Allowed setting isolation level in DATABASES ['OPTIONS'] on ↵Tim Graham
MySQL.
2017-01-16Refs #27690 -- Removed sleep before drop test db on Oracle.Mariusz Felisiak
2017-01-16Moved unneeded ImproperlyConfigured inner imports.Tim Graham
2017-01-16Refs #16614 -- Called _prepare_cursor() on every created cursor.François Freitag
2017-01-15Fixed #25809 -- Added BrinIndex support in django.contrib.postgres.Mads Jensen
Thanks Tim Graham and Markus Holtermann for review.
2017-01-14Fixed #27149 -- Added Subquery and Exists database expressions.Matthew Schinckel
Thanks Josh Smeaton for Oracle fixes.
2017-01-14Fixed #27718 -- Added QuerySet.union(), intersection(), difference().Florian Apolloner
Thanks Mariusz Felisiak for review and Oracle assistance. Thanks Tim Graham for review and writing docs.
2017-01-13Refs #20483 -- Implemented cascaded flush on Oracle.Simon Charette
The initial implementation added support for PostgreSQL but it is also required on Oracle (13b7f299de79e3eb101c3f015386eba39a8f3928). Thanks Mariusz Felisiak for the foreign key retreival queries.
2017-01-11Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL.François Freitag
Thanks to Josh Smeaton for the idea of implementing server-side cursors in PostgreSQL from the iterator method, and Anssi Kääriäinen and Kevin Turner for their previous work. Also Simon Charette and Tim Graham for review.