1. 06 5月, 2005 6 次提交
  2. 05 5月, 2005 7 次提交
  3. 04 5月, 2005 4 次提交
  4. 03 5月, 2005 4 次提交
  5. 02 5月, 2005 3 次提交
  6. 01 5月, 2005 6 次提交
  7. 30 4月, 2005 5 次提交
    • N
      GCC 4.0 includes a new warning option, -Wformat-literal, that emits · 47458f8c
      Neil Conway 提交于
      a warning when a variable is used as a format string for printf()
      and similar functions (if the variable is derived from untrusted
      data, it could include unexpected formatting sequences). This
      emits too many warnings to be enabled by default, but it does
      flag a few dubious constructs in the Postgres tree. This patch
      fixes up the obvious variants: functions that are passed a variable
      format string but no additional arguments.
      
      Most of these are harmless (e.g. the ruleutils stuff), but there
      is at least one actual bug here: if you create a trigger named
      "%sfoo", pg_dump will read uninitialized memory and fail to dump
      the trigger correctly.
      47458f8c
    • B
      Fix BCC to not define compiler location. · 16d4418b
      Bruce Momjian 提交于
      16d4418b
    • B
      Update FAQ. · 23cf3986
      Bruce Momjian 提交于
      23cf3986
    • B
      Update replication FAQ. · ef1b4fbb
      Bruce Momjian 提交于
      Christopher Browne
      ef1b4fbb
    • T
      Restructure LOCKTAG as per discussions of a couple months ago. · 3a694bb0
      Tom Lane 提交于
      Essentially, we shoehorn in a lockable-object-type field by taking
      a byte away from the lockmethodid, which can surely fit in one byte
      instead of two.  This allows less artificial definitions of all the
      other fields of LOCKTAG; we can get rid of the special pg_xactlock
      pseudo-relation, and also support locks on individual tuples and
      general database objects (including shared objects).  None of those
      possibilities are actually exploited just yet, however.
      
      I removed pg_xactlock from pg_class, but did not force initdb for
      that change.  At this point, relkind 's' (SPECIAL) is unused and
      could be removed entirely.
      3a694bb0
  8. 29 4月, 2005 5 次提交