1. 08 Oct, 2006 2 commits
  2. 07 Oct, 2006 15 commits
  3. 06 Oct, 2006 3 commits
  4. 05 Oct, 2006 6 commits
  5. 04 Oct, 2006 12 commits
  6. 03 Oct, 2006 2 commits
    • Tom Lane's avatar
      Switch over to using our own qsort() all the time, as has been proposed · 6edd2b4a
      Tom Lane authored
      repeatedly.  Now that we don't have to worry about memory leaks from
      glibc's qsort, we can safely put CHECK_FOR_INTERRUPTS into the tuplesort
      comparators, as was requested a couple months ago.  Also, get rid of
      non-reentrancy and an extra level of function call in tuplesort.c by
      providing a variant qsort_arg() API that passes an extra void * argument
      through to the comparison routine.  (We might want to use that in other
      places too, I didn't look yet.)
      6edd2b4a
    • Bruce Momjian's avatar
      pgevent fixes: · ed80f570
      Bruce Momjian authored
      1) Make vcbuild actually build the pgevent dll.
      2) Change the pgevent DLL file so it doens't specify ordinal for the
      functions. You're not supposed to do that. You're actually supposed to
      declare them as PRIVATE as well, but mingw doesn't support that. VC++
      will throw a warning and not an error though, so we can live with it.
      
      Magnus Hagander
      ed80f570