1. 03 10月, 2006 1 次提交
  2. 26 9月, 2006 1 次提交
  3. 23 9月, 2006 1 次提交
  4. 15 9月, 2006 1 次提交
  5. 03 9月, 2006 2 次提交
  6. 29 8月, 2006 1 次提交
  7. 28 8月, 2006 1 次提交
  8. 18 8月, 2006 1 次提交
    • T
      Implement archive_timeout feature to force xlog file switches to occur no more · e8ea9e95
      Tom Lane 提交于
      than N seconds apart.  This allows a simple, if not very high performance,
      means of guaranteeing that a PITR archive is no more than N seconds behind
      real time.  Also make pg_current_xlog_location return the WAL Write pointer,
      add pg_current_xlog_insert_location to return the Insert pointer, and fix
      pg_xlogfile_name_offset to return its results as a two-element record instead
      of a smashed-together string, as per recent discussion.
      
      Simon Riggs
      e8ea9e95
  9. 16 8月, 2006 1 次提交
    • T
      Add server support for "plugin" libraries that can be used for add-on tasks · abc3120e
      Tom Lane 提交于
      such as debugging and performance measurement.  This consists of two features:
      a table of "rendezvous variables" that allows separately-loaded shared
      libraries to communicate, and a new GUC setting "local_preload_libraries"
      that allows libraries to be loaded into specific sessions without explicit
      cooperation from the client application.  To make local_preload_libraries
      as flexible as possible, we do not restrict its use to superusers; instead,
      it is restricted to load only libraries stored in $libdir/plugins/.  The
      existing LOAD command has also been modified to allow non-superusers to
      LOAD libraries stored in this directory.
      
      This patch also renames the existing GUC variable preload_libraries to
      shared_preload_libraries (after a suggestion by Simon Riggs) and does some
      code refactoring in dfmgr.c to improve clarity.
      
      Korry Douglas, with a little help from Tom Lane.
      abc3120e
  10. 03 8月, 2006 1 次提交
  11. 25 7月, 2006 1 次提交
    • T
      Remove hard-wired lists of timezone abbreviations in favor of providing · d8b5c95c
      Tom Lane 提交于
      configuration files that can be altered by a DBA.  The australian_timezones
      GUC setting disappears, replaced by a timezone_abbreviations setting (set this
      to 'Australia' to get the effect of australian_timezones).  The list of zone
      names defined by default has undergone a bit of cleanup, too.  Documentation
      still needs some work --- in particular, should we fix Table B-4, or just get
      rid of it?  Joachim Wieland, with some editorializing by moi.
      d8b5c95c
  12. 24 7月, 2006 1 次提交
  13. 28 6月, 2006 2 次提交
  14. 19 6月, 2006 1 次提交
  15. 05 6月, 2006 2 次提交
    • T
      Increase the default value of cpu_index_tuple_cost from 0.001 to 0.005. · e4de635a
      Tom Lane 提交于
      This shouldn't affect simple indexscans much, while for bitmap scans that
      are touching a lot of index rows, this seems to bring the estimates more
      in line with reality.  Per recent discussion.
      e4de635a
    • T
      Add a GUC parameter seq_page_cost, and use that everywhere we formerly · eed6c9ed
      Tom Lane 提交于
      assumed that a sequential page fetch has cost 1.0.  This patch doesn't
      in itself change the system's behavior at all, but it opens the door to
      people adopting other units of measurement for EXPLAIN costs.  Also, if
      we ever decide it's worth inventing per-tablespace access cost settings,
      this change provides a workable intellectual framework for that.
      eed6c9ed
  16. 22 5月, 2006 1 次提交
    • T
      Add a new GUC parameter backslash_quote, which determines whether the SQL · b3eb4ea5
      Tom Lane 提交于
      parser will allow "\'" to be used to represent a literal quote mark.  The
      "\'" representation has been deprecated for some time in favor of the
      SQL-standard representation "''" (two single quote marks), but it has been
      used often enough that just disallowing it immediately won't do.  Hence
      backslash_quote allows the settings "on", "off", and "safe_encoding",
      the last meaning to allow "\'" only if client_encoding is a valid server
      encoding.  That is now the default, and the reason is that in encodings
      such as SJIS that allow 0x5c (ASCII backslash) to be the last byte of a
      multibyte character, accepting "\'" allows SQL-injection attacks as per
      CVE-2006-2314 (further details will be published after release).  The
      "on" setting is available for backward compatibility, but it must not be
      used with clients that are exposed to untrusted input.
      
      Thanks to Akio Ishida and Yasuo Ohgaki for identifying this security issue.
      b3eb4ea5
  17. 12 5月, 2006 1 次提交
  18. 07 3月, 2006 2 次提交
  19. 24 12月, 2005 1 次提交
  20. 23 12月, 2005 1 次提交
  21. 18 11月, 2005 1 次提交
    • T
      Make SQL arrays support null elements. This commit fixes the core array · cecb6075
      Tom Lane 提交于
      functionality, but I still need to make another pass looking at places
      that incidentally use arrays (such as ACL manipulation) to make sure they
      are null-safe.  Contrib needs work too.
      I have not changed the behaviors that are still under discussion about
      array comparison and what to do with lower bounds.
      cecb6075
  22. 10 11月, 2005 2 次提交
  23. 09 10月, 2005 1 次提交
  24. 20 9月, 2005 1 次提交
  25. 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
  26. 03 9月, 2005 2 次提交
  27. 30 8月, 2005 2 次提交
  28. 23 8月, 2005 1 次提交
  29. 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
  30. 19 8月, 2005 1 次提交
  31. 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
  32. 09 8月, 2005 1 次提交