Skip to content
Snippets Groups Projects
  1. Oct 30, 2005
  2. Oct 23, 2005
  3. Oct 12, 2005
    • PostgreSQL Daemon's avatar
      · 5f470ad4
      PostgreSQL Daemon authored
      update to beta3 before tagging ...
      5f470ad4
  4. Oct 05, 2005
  5. Sep 16, 2005
  6. Aug 25, 2005
  7. Aug 24, 2005
  8. Aug 23, 2005
  9. Aug 21, 2005
    • Tom Lane's avatar
      Convert the arithmetic for shared memory size calculation from 'int' · 0007490e
      Tom Lane authored
      to 'Size' (that is, size_t), and install overflow detection checks in it.
      This allows us to remove the former arbitrary restrictions on NBuffers
      etc.  It won't make any difference in a 32-bit machine, but in a 64-bit
      machine you could theoretically have terabytes of shared buffers.
      (How efficiently we could manage 'em remains to be seen.)  Similarly,
      num_temp_buffers, work_mem, and maintenance_work_mem can be set above
      2Gb on a 64-bit machine.  Original patch from Koichi Suzuki, additional
      work by moi.
      0007490e
  10. Aug 17, 2005
  11. Aug 02, 2005
    • Tom Lane's avatar
      Clean up CREATE DATABASE processing to make it more robust and get rid · 558730ac
      Tom Lane authored
      of special case for Windows port.  Put a PG_TRY around most of createdb()
      to ensure that we remove copied subdirectories on failure, even if the
      failure happens while creating the pg_database row.  (I think this explains
      Oliver Siegmar's recent report.)  Having done that, there's no need for
      the fragile assumption that copydir() mustn't ereport(ERROR), so simplify
      its API.  Eliminate the old code that used system("cp ...") to copy
      subdirectories, in favor of using copydir() on all platforms.  This not
      only should allow much better error reporting, but allows us to fsync
      the created files before trusting that the copy has succeeded.
      558730ac
  12. Jul 06, 2005
  13. Jul 03, 2005
  14. Jul 01, 2005
  15. Jun 27, 2005
  16. Jun 04, 2005
    • Bruce Momjian's avatar
      · 72c53ac3
      Bruce Momjian authored
      Allow kerberos name and username case sensitivity to be specified from
      postgresql.conf.
      
      ---------------------------------------------------------------------------
      
      
      Here's an updated version of the patch, with the following changes:
      
      1) No longer uses "service name" as "application version". It's instead
      hardcoded as "postgres". It could be argued that this part should be
      backpatched to 8.0, but it doesn't make a big difference until you can
      start changing it with GUC / connection parameters. This change only
      affects kerberos 5, not 4.
      
      2) Now downcases kerberos usernames when the client is running on win32.
      
      3) Adds guc option for "krb_caseins_users" to make the server ignore
      case mismatch which is required by some KDCs such as Active Directory.
      Off by default, per discussion with Tom. This change only affects
      kerberos 5, not 4.
      
      4) Updated so it doesn't conflict with the rendevouz/bonjour patch
      already in ;-)
      
      Magnus Hagander
      72c53ac3
  17. May 15, 2005
  18. May 07, 2005
  19. May 05, 2005
    • Bruce Momjian's avatar
      On Win32, libintl replaces snprintf() with its own version that · 64c8635a
      Bruce Momjian authored
      understands arg control, so we don't need our own.  In fact, it
      also uses macros that conflict with ours, so we _can't_ use
      our own.
      64c8635a
    • Neil Conway's avatar
      The issue has been raised in the past that our build system links each · d445b413
      Neil Conway authored
      executable against the maximal set of libraries it might need. So for
      example, if one executable requires `libreadline', all executables are
      linked against it.
      
      The easiest fix is to make use of GNU ld's --as-needed flag, which
      ignores linker arguments that are not actually needed by the specified
      object files. The attached patch modifies configure to check for this
      flag (when using GNU ld), and if ld supports it, adds the flag to
      LDFLAGS (we need to do the check since only relatively recent versions
      of GNU ld support this capability). Currently only GNU ld is supported;
      I'm not aware of any other linkers that support this functionality.
      d445b413
  20. Mar 25, 2005
  21. Mar 11, 2005
  22. Mar 02, 2005
  23. Feb 28, 2005
  24. Feb 24, 2005
  25. Feb 22, 2005
    • Bruce Momjian's avatar
      Add support to port/snprintf.c for position parameter specification: · b4feafb6
      Bruce Momjian authored
      + # Determine if printf supports %1$ argument selection, e.g. %5$ selects
      + # the fifth argument after the printf print string.
      + # This is not in the C99 standard, but in the Single Unix Specification (SUS).
      + # It is used in our langauge translation strings.
      
      Nicolai Tufar with configure changes by Bruce.
      b4feafb6
  26. Jan 18, 2005
  27. Jan 17, 2005
  28. Jan 11, 2005
  29. Jan 07, 2005
  30. Jan 01, 2005
  31. Dec 31, 2004
    • PostgreSQL Daemon's avatar
      · 2ff50159
      PostgreSQL Daemon authored
      Tag appropriate files for rc3
      
      Also performed an initial run through of upgrading our Copyright date to
      extend to 2005 ... first run here was very simple ... change everything
      where: grep 1996-2004 && the word 'Copyright' ... scanned through the
      generated list with 'less' first, and after, to make sure that I only
      picked up the right entries ...
      2ff50159
  32. Dec 21, 2004
  33. Dec 20, 2004
  34. Dec 16, 2004
Loading