1. 11 6月, 2008 5 次提交
  2. 10 6月, 2008 7 次提交
  3. 09 6月, 2008 6 次提交
  4. 08 6月, 2008 1 次提交
  5. 07 6月, 2008 2 次提交
  6. 06 6月, 2008 1 次提交
  7. 05 6月, 2008 2 次提交
  8. 04 6月, 2008 2 次提交
  9. 02 6月, 2008 4 次提交
  10. 31 5月, 2008 1 次提交
  11. 30 5月, 2008 4 次提交
    • T
      Copy refint.so and autoinc.so into the src/test/regress directory during · bf4bd50f
      Tom Lane 提交于
      "make all", and then reference them there during the actual tests.  This
      makes the handling of these files more parallel to that of regress.so,
      and in particular simplifies use of the regression tests outside the
      original build tree.  The PGDG and Red Hat RPMs have been doing this via
      patches for a very long time.  Inclusion of the change in core was requested
      by Jørgen Austvik of Sun, and I can't see any reason not to.
      
      I attempted to fix the MSVC scripts for this too, but they may need
      further tweaking ...
      bf4bd50f
    • T
      d11e301a
    • T
      Tweak libpq to avoid crashing due to incorrect buffer size calculation when · 02ac3054
      Tom Lane 提交于
      we are on a 64-bit machine (ie, size_t is wider than int) and someone passes
      in a query string that approaches or exceeds INT_MAX bytes.  Also, just for
      paranoia's sake, guard against similar overflows in sizing the input buffer.
      
      The backend will not in the foreseeable future be prepared to send or receive
      strings exceeding 1GB, so I didn't take the more invasive step of switching
      all the buffer index variables from int to size_t; though someday we might
      want to do that.
      
      I have a suspicion that this is not the only such bug in libpq, but this
      fix is enough to take care of the crash reported by Francisco Reyes.
      02ac3054
    • T
      Fix some bugs introduced by the 8.2-era conversion of cube functions to V1 · 5914140a
      Tom Lane 提交于
      calling convention.  cube_inter and cube_distance could attempt to pfree
      their input arguments, and cube_dim returned a value from a struct it
      might have just pfree'd (which would only really cause a problem in a
      debug build, but it's still wrong).  Per bug #4208 and additional code
      reading.
      
      In HEAD and 8.3, I also made a batch of cosmetic changes to bring these
      functions into line with the preferred coding style for V1 functions,
      ie declare and fetch all the arguments at the top so readers can easily
      see what they are.
      5914140a
  12. 29 5月, 2008 2 次提交
  13. 28 5月, 2008 3 次提交