diff options
| author | Ian Kelly <ian.g.kelly@gmail.com> | 2010-11-12 17:51:31 +0000 |
|---|---|---|
| committer | Ian Kelly <ian.g.kelly@gmail.com> | 2010-11-12 17:51:31 +0000 |
| commit | e0e347c2d39de56c4b7be5bde459bfffed16954d (patch) | |
| tree | b3d7166b917c18cc5085a81c6ef083e2823379f5 | |
| parent | bd83177c702359a14165b7058572710459b7d7eb (diff) | |
Fixed a misapplied test skip feature in the oracle backend from r14139.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14543 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/oracle/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/base.py b/django/db/backends/oracle/base.py index 625d95051a..d3faa96e65 100644 --- a/django/db/backends/oracle/base.py +++ b/django/db/backends/oracle/base.py @@ -50,7 +50,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): uses_savepoints = True can_return_id_from_insert = True allow_sliced_subqueries = False - supports_subqueries_in_group_by = True + supports_subqueries_in_group_by = False supports_timezones = False supports_bitwise_or = False can_defer_constraint_checks = True |
