1. 21 2月, 2006 1 次提交
  2. 16 2月, 2006 1 次提交
  3. 10 2月, 2006 1 次提交
  4. 07 2月, 2006 1 次提交
  5. 04 2月, 2006 2 次提交
  6. 03 2月, 2006 1 次提交
  7. 18 1月, 2006 1 次提交
  8. 13 1月, 2006 1 次提交
    • T
      Use a more bulletproof test for whether finite() and isinf() are present. · db0558c1
      Tom Lane 提交于
      It seems that recent gcc versions can optimize away calls to these functions
      even when the functions do not exist on the platform, resulting in a bogus
      positive result.  Avoid this by using a non-constant argument and ensuring
      that the function result is not simply discarded.  Per report from
      François Laupretre.
      db0558c1
  9. 05 1月, 2006 2 次提交
  10. 17 12月, 2005 2 次提交
  11. 09 12月, 2005 1 次提交
  12. 07 12月, 2005 1 次提交
  13. 06 12月, 2005 2 次提交
  14. 04 12月, 2005 1 次提交
  15. 06 11月, 2005 1 次提交
  16. 05 11月, 2005 1 次提交
    • P
      · 2a80c3c4
      PostgreSQL Daemon 提交于
      Tag everything for 8.1.0 ... Finally, a relesae on scheduale!!
      2a80c3c4
  17. 30 10月, 2005 1 次提交
  18. 23 10月, 2005 1 次提交
    • P
      · 106388fb
      PostgreSQL Daemon 提交于
      update configure and bugtemplate for beta 4 ...
      106388fb
  19. 12 10月, 2005 1 次提交
    • P
      · 5f470ad4
      PostgreSQL Daemon 提交于
      update to beta3 before tagging ...
      5f470ad4
  20. 06 10月, 2005 1 次提交
  21. 17 9月, 2005 1 次提交
    • P
      · cd859180
      PostgreSQL Daemon 提交于
      tag it all beta2 ...
      cd859180
  22. 25 8月, 2005 2 次提交
  23. 24 8月, 2005 3 次提交
  24. 21 8月, 2005 1 次提交
    • T
      Convert the arithmetic for shared memory size calculation from 'int' · 0007490e
      Tom Lane 提交于
      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
  25. 18 8月, 2005 1 次提交
  26. 03 8月, 2005 1 次提交
    • T
      Clean up CREATE DATABASE processing to make it more robust and get rid · 558730ac
      Tom Lane 提交于
      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
  27. 07 7月, 2005 1 次提交
  28. 06 7月, 2005 1 次提交
  29. 04 7月, 2005 1 次提交
  30. 02 7月, 2005 1 次提交
  31. 27 6月, 2005 1 次提交
  32. 05 6月, 2005 1 次提交
    • B
      · 72c53ac3
      Bruce Momjian 提交于
      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
  33. 15 5月, 2005 1 次提交