1. 29 Sep, 2007 12 commits
  2. 28 Sep, 2007 6 commits
  3. 27 Sep, 2007 7 commits
  4. 26 Sep, 2007 13 commits
  5. 25 Sep, 2007 2 commits
    • Tom Lane's avatar
      Change on-disk representation of NUMERIC datatype so that the sign_dscale · f828f878
      Tom Lane authored
      word comes before the weight instead of after.  This will allow future
      binary-compatible extension of the representation to support compact formats,
      as discussed on pgsql-hackers around 2007/06/18.  The reason to do it now is
      that we've already pretty well broken any chance of simple in-place upgrade
      from 8.2 to 8.3, but it's possible that 8.3 to 8.4 (or whenever we get around
      to squeezing NUMERIC) could otherwise be data-compatible.
      f828f878
    • Tom Lane's avatar
      Dept. of second thoughts: fix loop in BgBufferSync so that the exit when · 7a315a09
      Tom Lane authored
      bgwriter_lru_maxpages is exceeded leaves the loop variables in the
      expected state.  In the original coding, we'd fail to advance
      next_to_clean, causing that buffer to be probably-uselessly rechecked next
      time, and also have an off-by-one idea of the number of buffers scanned.
      7a315a09