1. 15 3月, 2011 4 次提交
    • R
      Minor sync rep documentation improvements. · f0f36171
      Robert Haas 提交于
      - Make the name of the ID tag for the GUC entry match the GUC name.
      - Clarify that synchronous_replication waits for xlog flush, not receipt.
      - Mention that synchronous_replication won't wait if max_wal_senders=0.
      f0f36171
    • R
      Remove 13 keywords that are used only for ROLE options. · 5ca4dfc7
      Robert Haas 提交于
      Review by Tom Lane.
      5ca4dfc7
    • M
      Remove special case allowing parameters to ident auth for initdb · 01c1a12a
      Magnus Hagander 提交于
      This was required in pre-8.4 versions to allow the specification of
      "ident sameuser", but sameuser is no longer required. It could be extended
      to allow all parameters in the future, but should then apply to all
      methods and not just ident.
      01c1a12a
    • T
      Adjust regression test to avoid platform-dependent failure. · f12423d7
      Tom Lane 提交于
      We have a test that verifies that max(anyarray) will cope if the array
      column elements aren't all the same array type.  However, it's now possible
      for that to produce a collation-related error message instead of the
      expected one, if the first two column elements happen to be of the same
      type and it's one that expects to be given collation info.  Tweak the test
      to ensure this doesn't happen.  Per buildfarm member pika.
      f12423d7
  2. 14 3月, 2011 2 次提交
  3. 13 3月, 2011 1 次提交
    • T
      Make all comparisons done for/with statistics use the default collation. · 696d1f7f
      Tom Lane 提交于
      While this will give wrong answers when estimating selectivity for a
      comparison operator that's using a non-default collation, the estimation
      error probably won't be large; and anyway the former approach created
      estimation errors of its own by trying to use a histogram that might have
      been computed with some other collation.  So we'll adopt this simplified
      approach for now and perhaps improve it sometime in the future.
      
      This patch incorporates changes from Andres Freund to make sure that
      selfuncs.c passes a valid collation OID to any datatype-specific function
      it calls, in case that function wants collation information.  Said OID will
      now always be DEFAULT_COLLATION_OID, but at least we won't get errors.
      696d1f7f
  4. 12 3月, 2011 10 次提交
  5. 11 3月, 2011 23 次提交