Changes between Initial Version and Version 1 of Ticket #29630, comment 7
- Timestamp:
- Sep 5, 2018, 1:47:22 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29630, comment 7
initial v1 1 The ''easy picking'' flag is used for [https://docs.djangoproject.com/en/2.1/internals/contributing/triaging-tickets/#easy-pickings tickets that would require small, easy, patches]. For example a typo in an error message or something that be performed whya search and replace through the code base.1 The ''easy picking'' flag is used for [https://docs.djangoproject.com/en/2.1/internals/contributing/triaging-tickets/#easy-pickings tickets that would require small, easy, patches]. For example a typo in an error message or something that be fixed with a search and replace through the code base. 2 2 3 Any ORM bug does't fit into this category. The fact it only manifests itself on Oracle which a most ofcontributors have limited knowledge of also makes it harder to resolve.3 Any ORM bug does't fit into this category. The fact it only manifests itself on Oracle most of current contributors have limited knowledge of also makes it harder to resolve. 4 4 5 5 I've switched the component to the database layer because while it manifests itself in the admin in your case such an ambigously defined query can be trivially constructed by using `select_related('fk')` or `values('id', 'fk__id')`.