Changes between Version 3 and Version 4 of Ticket #33507, comment 10
- Timestamp:
- Aug 6, 2022, 9:54:03 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33507, comment 10
v3 v4 1 1 I 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. 2 The 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? 2 The 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. 3 Work in progress :)