1. 12 Jun, 2008 3 commits
  2. 11 Jun, 2008 6 commits
  3. 10 Jun, 2008 4 commits
  4. 09 Jun, 2008 6 commits
  5. 08 Jun, 2008 5 commits
  6. 07 Jun, 2008 1 commit
  7. 06 Jun, 2008 2 commits
  8. 05 Jun, 2008 3 commits
  9. 04 Jun, 2008 2 commits
  10. 02 Jun, 2008 1 commit
  11. 01 Jun, 2008 3 commits
  12. 31 May, 2008 1 commit
  13. 30 May, 2008 1 commit
    • Tom Lane's avatar
      Copy refint.so and autoinc.so into the src/test/regress directory during · bf4bd50f
      Tom Lane authored
      "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
  14. 29 May, 2008 2 commits
    • Tom Lane's avatar
      d11e301a
    • Tom Lane's avatar
      Tweak libpq to avoid crashing due to incorrect buffer size calculation when · 02ac3054
      Tom Lane authored
      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