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.
This commit is contained in:
Anssi Kääriäinen 2013-02-23 00:27:39 +02:00
parent 09fcb70c80
commit ce094e570e
1 changed files with 2 additions and 1 deletions

View File

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