Changes between Version 2 and Version 3 of Ticket #33507, comment 10


Ignore:
Timestamp:
Jun 17, 2022, 6:12:33 AM (2 years ago)
Author:
raydeal

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33507, comment 10

    v2 v3  
    1 I changed type to UUID but it broken prefetch_related tests. I have tried in `myslq/operations.py` add UUIDField to `cast_data_types` and override `unification_cast_sql` but it didn't help.
     1I changed type to UUID but it has broken prefetch_related tests. I have tried in `myslq/operations.py` add UUIDField to `cast_data_types` and override `unification_cast_sql` but it didn't help.
    22The issue is because value of related field is still visible as str type not as UUID type. I suspect that there is lack of cast type to uuid in query, but I can't find place where to fix it. Can anybody help?
Back to Top