1. 15 Oct, 2005 12 commits
  2. 14 Oct, 2005 4 commits
    • Tom Lane's avatar
      Fix syslog bug: if any messages are emitted to write_syslog before · abd3f43b
      Tom Lane authored
      the facility has been set, the facility gets set to LOCAL0 and cannot
      be changed later.  This seems reasonably plausible to happen, particularly
      at higher debug log levels, though I am not certain it explains Han Holl's
      recent report.  Easiest fix is to teach the code how to change the value
      on-the-fly, which is nicer anyway.  I made the settings PGC_SIGHUP to
      conform with log_destination.
      abd3f43b
    • Andrew Dunstan's avatar
      · f620098d
      Andrew Dunstan authored
      fix nonsensical summary row on example
      f620098d
    • Tom Lane's avatar
      Pass a strdup'd ident string to openlog(), to ensure that reallocation · 4aa0d70f
      Tom Lane authored
      of GUC memory doesn't cause us to start emitting a bogus ident string.
      Per report from Han Holl.  Also some trivial code cleanup in write_syslog.
      4aa0d70f
    • Bruce Momjian's avatar
      Allow times of 24:00:00 to match rounding behavior: · a93bf450
      Bruce Momjian authored
      	regression=# select '23:59:59.9'::time(0);
      	   time
      	----------
      	 24:00:00
      	(1 row)
      
      	This is bad because:
      
      	regression=# select '24:00:00'::time(0);
      	ERROR:  date/time field value out of range: "24:00:00"
      
      The last example now works.
      a93bf450
  3. 13 Oct, 2005 24 commits