Changes between Initial Version and Version 1 of Ticket #27595, comment 11


Ignore:
Timestamp:
Oct 22, 2018, 11:41:49 AM (6 years ago)
Author:
Tim Graham

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27595, comment 11

    initial v1  
    1 Fixed by 5e3463f6bcec818431f0e1f4649d6a5bd944c459.
     1In 5e3463f6bcec818431f0e1f4649d6a5bd944c459:
     2
     3Fixed #27595 -- Made ForeignKey.get_col() follow target chains.
     4
     5Previously, foreign relationships were followed only one level deep which
     6prevents foreign keys to foreign keys from being resolved appropriately.
     7This was causing issues such as improper database value conversion for
     8UUIDField on SQLite because the resolved expression's output field's
     9internal type wasn't correct. Added tests to make sure unlikely foreign
     10reference cycles don't cause recursion errors.
     11
     12Refs #24343.
     13
     14Thanks oyooyo for the report and Wayne Merry for the investigation.
Back to Top