summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2013-02-23 00:27:39 +0200
committerAnssi Kääriäinen <akaariai@gmail.com>2013-02-23 00:27:39 +0200
commitce094e570e0ff085b88b2303e25124331f558e45 (patch)
tree38e42cdae886f21495695cad610ad7ba82987102
parent09fcb70c804b76fccc8fc0ac545873e5ab30c00a (diff)
Fixed Oracle regression in last_executed_query() with unicode strings
The regression was likely caused by the fix in #19606 which adjusted Oracle's unicode detection, though it seems this would have been an issue in some configurations even before.
-rw-r--r--django/db/backends/oracle/base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/db/backends/oracle/base.py b/django/db/backends/oracle/base.py
index a9ae025146..3c799f01c1 100644
--- a/django/db/backends/oracle/base.py
+++ b/django/db/backends/oracle/base.py
@@ -270,7 +270,8 @@ WHEN (new.%(col_name)s IS NULL)
if six.PY3:
return cursor.statement
else:
- return cursor.statement.decode("utf-8")
+ query = cursor.statement
+ return query if isinstance(query, unicode) else query.decode("utf-8")
def last_insert_id(self, cursor, table_name, pk_name):
sq_name = self._get_sequence_name(table_name)