Closed niqingyang closed 9 months ago
Q | A |
---|---|
Is bugfix? | ✔️ |
New feature? | ❌ |
Breaks BC? | ✔️/❌ |
Fixed issues | The method allPopulate in ActiveQuery will execute populate twice during execution #286 |
ActiveQuery.php
The previous version of the allPopulate()
method used to populate rows and carry out additional checks to ensure they weren't empty. With this update, this process got simpler as we replaced this logic with a direct call to the all()
method for a more efficient execution.All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
a9097f1
) 87.70% compared to head (f95a71d
) 87.67%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Sorry for the long response. Perhaps we should remove the method as this is the same as .
allPopulate()``all()
Related with:
Yes, it looks better this way