Changes between Initial Version and Version 1 of Ticket #19198


Ignore:
Timestamp:
Oct 26, 2012, 9:31:15 PM (11 years ago)
Author:
Anssi Kääriäinen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19198 – Description

    initial v1  
    55The first of the failures happens because Oracle backend does querystr % args formatting and if a table name contains '%' then the formatting will fail.
    66
    7 The second one happens because we check for if all fetched columns are None then set related object to None in models/query.py when creating the related objects. Due to a recent change we correctly convert the row values in compiler.py for related select fields, too. This means that None values will be converted to '' and the check in models/query.py fails.
     7The second one happens because we check for if all fetched columns are None then set related object to None in models/query.py when creating the related objects. Due to a recent change we correctly convert the row values in compiler.py for related select fields, too. This means that None values will be converted to "" and the check in models/query.py fails.
    88
    99Draft patches available from: https://github.com/akaariai/django/compare/fix_oracle2
Back to Top