Changes between Initial Version and Version 1 of Ticket #22124
- Timestamp:
- Feb 22, 2014, 10:17:41 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22124
- Property Triage Stage Unreviewed → Accepted
- Property Type Uncategorized → Cleanup/optimization
- Property Version 1.6 → master
-
Ticket #22124 – Description
initial v1 1 Custom Lookups look great, however, I find the documentation terse. Example: no explanation what 2 lhs, lhs_params = self.process_lhs(qn, connection) 1 Custom Lookups look great, however, I find the documentation terse. Example: no explanation what 2 {{{#!python 3 lhs, lhs_params = self.process_lhs(qn, connection) 4 }}} 3 5 is exactly. 4 6 5 The explanation: "lhs 6 The lhs (left-hand side) of a lookup tells us what we are comparing the rhs to. It is an object which implements the query expression API. This is likely to be a field, an aggregate or a subclass of Transform. 7 does not explain" does not explain what lhs_params might be. Also a search on "process_lhs" on complete Django website only points to this page (no other pages). 7 The explanation: 8 9 > lhs 10 > The lhs (left-hand side) of a lookup tells us what we are comparing the rhs to. It is an object which implements the query expression API. This is likely to be a field, an aggregate or a subclass of Transform. 11 12 does not explain what `lhs_params` might be. Also a search on `process_lhs` on complete Django website only points to this page (no other pages).