Changes between Initial Version and Version 2 of Ticket #20647


Ignore:
Timestamp:
Aug 14, 2014, 9:01:25 PM (10 years ago)
Author:
Shai Berger
Comment:

As can be seen in the stack trace, this is because the query is sliced for presentation -- which means this is really a duplicate of the more focused #23147.

The test case should be added when the problem is solved, though.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20647

    • Property Triage Stage UnreviewedAccepted
    • Property Resolutionduplicate
    • Property Status newclosed
  • Ticket #20647 – Description

    initial v2  
    11Doing anything that would get a string representation of any QuerySet that has been selected for update (.select_of_update()) on oracle backend causes the following stacktrace
    2 
     2{{{#!python
    33Traceback (most recent call last):
    44  File "<stdin>", line 1, in <module>
     
    1818    return self.cursor.execute(query, self._param_generator(params))
    1919django.db.utils.DatabaseError: ORA-00907: missing right parenthesis
    20 
     20}}}
Back to Top