1. 26 Feb, 2018 1 commit
    • Andreas Brandl's avatar
      Simplify filtering of non-human users (like ghosts). · df55efda
      Andreas Brandl authored
      Note that `ghost IS NOT TRUE` is equivalent to `ghost = 'f' OR ghost is
      null`:
      
      (true), (false), (NULL)) AS t (flag);
       flag | ?column? | ?column?
      ------+----------+----------
       t    | f        | f
       f    | t        | t
            | t        | t
      (3 rows)
      
      This makes it a little easier to create partial indexes for this (as only
      one condition is needed).
      
      Closes #43304.
      df55efda
  2. 22 Feb, 2018 33 commits
  3. 21 Feb, 2018 6 commits