From 0f22c6a7c8a089e2381a058b4c472cf92699950e Mon Sep 17 00:00:00 2001 From: Boulder Sprinters Date: Fri, 4 May 2007 17:03:20 +0000 Subject: [PATCH] boulder-oracle-sprint: Fixes #4215: Applied quote_only_if_word.patch from Ben Khoo. Thanks! git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@5149 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/oracle/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/oracle/base.py b/django/db/backends/oracle/base.py index 70b633413c..efec3e58f1 100644 --- a/django/db/backends/oracle/base.py +++ b/django/db/backends/oracle/base.py @@ -272,7 +272,7 @@ def get_query_set_class(DefaultQuerySet): "Create a custom QuerySet class for Oracle." from django.db import backend, connection - from django.db.models.query import EmptyResultSet, GET_ITERATOR_CHUNK_SIZE + from django.db.models.query import EmptyResultSet, GET_ITERATOR_CHUNK_SIZE, quote_only_if_word class OracleQuerySet(DefaultQuerySet):