Commit ce094e57 authored by Anssi Kääriäinen's avatar Anssi Kääriäinen
Browse files

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.
parent 09fcb70c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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)