Changes between Initial Version and Version 1 of Ticket #19198
- Timestamp:
- Oct 26, 2012, 9:31:15 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19198 – Description
initial v1 5 5 The first of the failures happens because Oracle backend does querystr % args formatting and if a table name contains '%' then the formatting will fail. 6 6 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.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. 8 8 9 9 Draft patches available from: https://github.com/akaariai/django/compare/fix_oracle2