1
0
mirror of https://github.com/django/django.git synced 2025-07-04 01:39:20 +00:00

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
This commit is contained in:
Boulder Sprinters 2007-05-04 17:03:20 +00:00
parent 32683de27c
commit 0f22c6a7c8

View File

@ -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):