Changes between Initial Version and Version 1 of Ticket #28454


Ignore:
Timestamp:
Jul 31, 2017, 12:03:57 PM (7 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28454

    • Property Component UncategorizedDatabase layer (models, ORM)
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Simplify use of setup_joins by returning a named tupleSimplify use of Query.setup_joins() by returning a named tuple
  • Ticket #28454 – Description

    initial v1  
    1010> Yes please
    1111
    12 The `setup_joins` function currently returns a tuple of many pieces of data. #24747 adds another to that list. As many users of `setup_joins` unpacked multiple variables to `_` placeholders, it was decided to simplify usage and make it easier to add additional items to the tuple without changing the unpacking.
     12The `Query.setup_joins()` method currently returns a tuple of many pieces of data. #24747 adds another to that list. As many users of `setup_joins()` unpacked multiple variables to `_` placeholders, it was decided to simplify usage and make it easier to add additional items to the tuple without changing the unpacking.
Back to Top