Skip to content
Snippets Groups Projects
  1. Oct 24, 2016
  2. Oct 20, 2016
  3. Jul 08, 2016
  4. Jun 30, 2016
  5. Jun 25, 2016
  6. Jun 20, 2016
  7. Jun 12, 2016
  8. Jun 08, 2016
  9. Jun 06, 2016
  10. May 27, 2016
  11. May 12, 2016
  12. May 02, 2016
    • Peter Rotich's avatar
      orm: Delegate ResultSet calls to QuerySet Iterator · 393a7d22
      Peter Rotich authored
      Allows for ability to access results without the need to call getIterator on
      the QuerySet. For example - $this->members->findFirst(array(...));
      
      This commit addresses regression issue brought about by commits 8ab4432f and
      eb0ba316 -- where ResultSet processing changed based on caching mode.
      393a7d22
  13. Apr 28, 2016
  14. Apr 26, 2016
  15. Apr 25, 2016
  16. Apr 24, 2016
  17. Apr 19, 2016
    • Jared Hancock's avatar
    • Jared Hancock's avatar
      orm: Propagate LEFT joins in join paths · 6be61133
      Jared Hancock authored
      If something like members__staff is considered leaving the Team model,
      and the `members` relationship is nullable, and the `staff` relationship is
      not, in the context of the compiled SQL statement, the second join should
      also be considered nullable (LEFT join), because otherwise inconsistent
      results would be returned from the query.
      
      In other words, if a count is considered as an annotation to the Team model
      instances, Teams with zero members should still be considered as valid teams
      and should be selected with such an annotation. Before this patch, however,
      the join between TeamMember and Staff would have been an inner join instead
      of a LEFT join, which could skew the database results.
      6be61133
    • Jared Hancock's avatar
      oops: Fix max of a single attachment · d1a9161f
      Jared Hancock authored
      d1a9161f
    • Jared Hancock's avatar
      forms: Fix lag updating the CDATA table · 33455cae
      Jared Hancock authored
      This fixes an issue where the CDATA table is updated with the OLD version of
      an answer after it is updated. That is, after an answer is updated, the
      CDATA table is also updated to reflect the change; however, the old content
      of the answer value is used when updating the CDATA value.
      33455cae
  18. Apr 14, 2016
Loading