From 326c5813b9d7a36f95993d34c04c45bf386570b1 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 10 Mar 2009 11:21:46 +0000 Subject: [PATCH] Removed a FIXME from the queryset-refactor days. Turns out, nothing needed to be fixed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10018 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 5a3cb53842..187ff6cfe6 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -217,8 +217,7 @@ class BaseDatabaseOperations(object): Returns the value to use for the LIMIT when we are wanting "LIMIT infinity". Returns None if the limit clause can be omitted in this case. """ - # FIXME: API may need to change once Oracle backend is repaired. - raise NotImplementedError() + raise NotImplementedError def pk_default_value(self): """