1. 10 11月, 2005 2 次提交
  2. 09 10月, 2005 1 次提交
  3. 20 9月, 2005 1 次提交
  4. 12 9月, 2005 1 次提交
    • T
      Tweak TCP-keepalive code so that an invalid setting doesn't cause us · cc3bda37
      Tom Lane 提交于
      to drop connections unceremoniously.  Also some other marginal cleanups:
      don't query getsockopt() repeatedly if it fails, and avoid having the
      apparent definition of struct Port depend on which system headers you
      might have included or not.  Oliver Jowett and Tom Lane.
      cc3bda37
  5. 03 9月, 2005 2 次提交
  6. 30 8月, 2005 2 次提交
  7. 23 8月, 2005 1 次提交
  8. 21 8月, 2005 2 次提交
    • T
      Minor GUC cleanups: document krb_server_hostname and custom_variable_classes · 6fcaaf29
      Tom Lane 提交于
      in postgresql.conf.sample, mark custom_variable_classes as SIGHUP not
      POSTMASTER to agree with the documentation (I can't see a reason it has
      to be POSTMASTER so I think the docs are right).
      6fcaaf29
    • 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
  9. 19 8月, 2005 1 次提交
  10. 12 8月, 2005 1 次提交
    • T
      Autovacuum loose end mop-up. Provide autovacuum-specific vacuum cost · d90c5311
      Tom Lane 提交于
      delay and limit, both as global GUCs and as table-specific entries in
      pg_autovacuum.  stats_reset_on_server_start is now OFF by default,
      but a reset is forced if we did WAL replay.  XID-wrap vacuums do not
      ANALYZE, but do FREEZE if it's a template database.  Alvaro Herrera
      d90c5311
  11. 09 8月, 2005 1 次提交
  12. 30 7月, 2005 1 次提交
  13. 24 7月, 2005 1 次提交
  14. 14 7月, 2005 1 次提交
  15. 06 7月, 2005 1 次提交
  16. 03 7月, 2005 2 次提交
  17. 01 7月, 2005 1 次提交
  18. 26 6月, 2005 1 次提交
  19. 18 6月, 2005 1 次提交
  20. 10 6月, 2005 3 次提交
  21. 05 6月, 2005 2 次提交
    • 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
    • B
      00750f3f
  22. 15 5月, 2005 1 次提交
  23. 22 4月, 2005 1 次提交
  24. 08 4月, 2005 1 次提交
  25. 24 3月, 2005 1 次提交
    • B
      Change Win32 O_SYNC method to O_DSYNC because that is what the method · b1f57d88
      Bruce Momjian 提交于
      currently does.  This is now the default Win32 wal sync method because
      we perfer o_datasync to fsync.
      
      Also, change Win32 fsync to a new wal sync method called
      fsync_writethrough because that is the behavior of _commit, which is
      what is used for fsync on Win32.
      
      Backpatch to 8.0.X.
      b1f57d88
  26. 20 3月, 2005 1 次提交
  27. 13 3月, 2005 1 次提交
  28. 05 3月, 2005 1 次提交
    • T
      Replace the BufMgrLock with separate locks on the lookup hashtable and · 5d508736
      Tom Lane 提交于
      the freelist, plus per-buffer spinlocks that protect access to individual
      shared buffer headers.  This requires abandoning a global freelist (since
      the freelist is a global contention point), which shoots down ARC and 2Q
      as well as plain LRU management.  Adopt a clock sweep algorithm instead.
      Preliminary results show substantial improvement in multi-backend situations.
      5d508736
  29. 06 11月, 2004 1 次提交
    • T
      Create 'default_tablespace' GUC variable that supplies a TABLESPACE · 98e8b480
      Tom Lane 提交于
      clause implicitly whenever one is not given explicitly.  Remove concept
      of a schema having an associated tablespace, and simplify the rules for
      selecting a default tablespace for a table or index.  It's now just
      (a) explicit TABLESPACE clause; (b) default_tablespace if that's not an
      empty string; (c) database's default.  This will allow pg_dump to use
      SET commands instead of tablespace clauses to determine object locations
      (but I didn't actually make it do so).  All per recent discussions.
      98e8b480
  30. 18 10月, 2004 1 次提交
  31. 10 10月, 2004 1 次提交
  32. 08 10月, 2004 1 次提交