1. 11 Jun, 2008 3 commits
  2. 10 Jun, 2008 4 commits
  3. 09 Jun, 2008 6 commits
  4. 08 Jun, 2008 5 commits
  5. 07 Jun, 2008 1 commit
  6. 06 Jun, 2008 2 commits
  7. 05 Jun, 2008 3 commits
  8. 04 Jun, 2008 2 commits
  9. 02 Jun, 2008 1 commit
  10. 01 Jun, 2008 3 commits
  11. 31 May, 2008 1 commit
  12. 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
  13. 29 May, 2008 5 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
    • Tom Lane's avatar
      Fix some bugs introduced by the 8.2-era conversion of cube functions to V1 · 5914140a
      Tom Lane authored
      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
    • Bruce Momjian's avatar
      Add description to: · e19d10b5
      Bruce Momjian authored
      * Add deferred trigger queue file
      
      <   This item involves dumping large queues into files.
      >   This item involves dumping large queues into files, or doing some
      >   kind of join to process all the triggers, or some bulk operation.
      e19d10b5
    • Bruce Momjian's avatar
      Add URL for: · 882576aa
      Bruce Momjian authored
      * Add deferred trigger queue file
      
      >   http://archives.postgresql.org/pgsql-hackers/2008-05/msg00876.php
      882576aa
  14. 28 May, 2008 3 commits