From 7fa7dd48c4c785fd34161c6418de5accb1618422 Mon Sep 17 00:00:00 2001 From: Michael Manfre Date: Sun, 22 Feb 2015 23:23:16 -0500 Subject: [PATCH] Fixed signature of BaseDatabaseOperations.date_interval_sql() and document the change. --- django/db/backends/base/operations.py | 2 +- docs/releases/1.8.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/django/db/backends/base/operations.py b/django/db/backends/base/operations.py index 9777a77e65..28b110f849 100644 --- a/django/db/backends/base/operations.py +++ b/django/db/backends/base/operations.py @@ -76,7 +76,7 @@ class BaseDatabaseOperations(object): """ raise NotImplementedError('subclasses of BaseDatabaseOperations may require a date_extract_sql() method') - def date_interval_sql(self, sql, connector, timedelta): + def date_interval_sql(self, timedelta): """ Implements the date interval functionality for expressions """ diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index d82995bafc..6a3b5554a6 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -1014,6 +1014,9 @@ those writing third-party backends in updating their code: * The ``SQLCompiler.as_sql()`` method now takes a ``subquery`` parameter (:ticket:`24164`). +* The ``BaseDatabaseOperations.date_interval_sql()`` method now only takes a + ``timedelta`` parameter. + :mod:`django.contrib.admin` ~~~~~~~~~~~~~~~~~~~~~~~~~~~