1. 23 11月, 2006 16 次提交
  2. 22 11月, 2006 20 次提交
  3. 21 11月, 2006 4 次提交
    • B
      Add capitalization mention. · cc6c10a7
      Bruce Momjian 提交于
      cc6c10a7
    • B
      I noticed that the Partitioning section of the docs has *two* sections · 150328cd
      Bruce Momjian 提交于
      of caveats in different places, but close together. One called caveats,
      one not. That looks like it just led to somebody not reading some
      appropriate caveats in the second group of caveats (on -admin).
      
      Simon Riggs
      150328cd
    • T
      Change the default setting for log_min_error_statement to ERROR. Per · 414c7a53
      Tom Lane 提交于
      recent discussion in which majority opinion was that this is a more
      widely useful setting than the previous default of PANIC.
      414c7a53
    • T
      Adjust elog.c so that elog(FATAL) exits (including cases where ERROR is · e82d9e62
      Tom Lane 提交于
      promoted to FATAL) end in exit(1) not exit(0).  Then change the postmaster to
      allow exit(1) without a system-wide panic, but not for the startup subprocess
      or the bgwriter.  There were a couple of places that were using exit(1) to
      deliberately force a system-wide panic; adjust these to be exit(2) instead.
      This fixes the problem noted back in July that if the startup process exits
      with elog(ERROR), the postmaster would think everything is hunky-dory and
      proceed to start up.  Alternative solutions such as trying to run the entire
      startup process as a critical section seem less clean, primarily because of
      the fact that a fair amount of startup code is shared by all postmaster
      children in the EXEC_BACKEND case.  We'd need an ugly special case somewhere
      near the head of main.c to make it work if it's the child process's
      responsibility to determine what happens; and what's the point when the
      postmaster already treats different children differently?
      e82d9e62