BigW Consortium Gitlab

  1. 31 Jan, 2018 1 commit
  2. 22 Dec, 2017 1 commit
  3. 14 Dec, 2017 1 commit
  4. 02 Aug, 2017 1 commit
  5. 28 Jul, 2017 1 commit
    • Merge issuable "reopened" state into "opened" · 6ef87a20
      Yorick Peterse authored
      Having two states that essentially mean the same thing is very much like
      having a boolean "true" and boolean "mostly-true": it's rather silly.
      This commit merges the "reopened" state into the "opened" state while
      taking care of system notes still showing messages along the lines of
      "Alice reopened this issue".
      
      A big benefit from having only two states (opened and closed) is that
      indexing and querying becomes simpler and more performant. For example,
      to get all the opened queries we no longer have to query both states:
      
          SELECT *
          FROM issues
          WHERE project_id = 2
          AND state IN ('opened', 'reopened');
      
      Instead we can query a single state directly, which can be much faster:
      
          SELECT *
          FROM issues
          WHERE project_id = 2
          AND state = 'opened';
      
      Further, only having two states makes indexing easier as we will only
      ever filter (and thus scan an index) using a single value. Partial
      indexes could help but aren't supported on MySQL, complicating the
      development process and not being helpful for MySQL.
  6. 25 Apr, 2017 1 commit
  7. 03 Apr, 2017 2 commits
  8. 25 Jan, 2017 1 commit
  9. 12 Sep, 2016 1 commit
  10. 20 Jul, 2016 1 commit
    • Refactor Issues::BulkUpdateService spec · 97c4a1dc
      Robert Speicher authored
      - Create fewer Issue objects; 2 is as good as 5 for these cases. This
        gives us a nice little speed improvement.
      - Don't `describe` Symbols.
      - Simplify object creation.
      - Lessen "mystery guest" antipattern
  11. 17 Mar, 2016 1 commit
  12. 04 Mar, 2016 1 commit