1. 22 May, 2011 5 commits
  2. 21 May, 2011 4 commits
  3. 20 May, 2011 1 commit
  4. 19 May, 2011 9 commits
  5. 18 May, 2011 6 commits
  6. 16 May, 2011 7 commits
  7. 15 May, 2011 3 commits
  8. 13 May, 2011 1 commit
  9. 12 May, 2011 3 commits
    • Robert Haas's avatar
      Kill stray "not". · c5ab8425
      Robert Haas authored
      c5ab8425
    • Tom Lane's avatar
      Fix write-past-buffer-end in ldapServiceLookup(). · 8d0df204
      Tom Lane authored
      The code to assemble ldap_get_values_len's output into a single string
      wrote the terminating null one byte past where it should.  Fix that,
      and make some other cosmetic adjustments to make the code a trifle more
      readable and more in line with usual Postgres coding style.
      
      Also, free the "result" string when done with it, to avoid a permanent
      memory leak.
      
      Bug report and patch by Albe Laurenz, cosmetic adjustments by me.
      8d0df204
    • Alvaro Herrera's avatar
      Fix assorted typos · c6eb5740
      Alvaro Herrera authored
      c6eb5740
  10. 11 May, 2011 1 commit
    • Tom Lane's avatar
      Split PGC_S_DEFAULT into two values, for true boot_val vs computed default. · e05b8664
      Tom Lane authored
      Failure to distinguish these cases is the real cause behind the recent
      reports of Windows builds crashing on 'infinity'::timestamp, which was
      directly due to failure to establish a value of timezone_abbreviations
      in postmaster child processes.  The postmaster had the desired value,
      but write_one_nondefault_variable() didn't transmit it to backends.
      
      To fix that, invent a new value PGC_S_DYNAMIC_DEFAULT, and be sure to use
      that or PGC_S_ENV_VAR (as appropriate) for "default" settings that are
      computed during initialization.  (We need both because there's at least
      one variable that could receive a value from either source.)
      
      This commit also fixes ProcessConfigFile's failure to restore the correct
      default value for certain GUC variables if they are set in postgresql.conf
      and then removed/commented out of the file.  We have to recompute and
      reinstall the value for any GUC variable that could have received a value
      from PGC_S_DYNAMIC_DEFAULT or PGC_S_ENV_VAR sources, and there were a
      number of oversights.  (That whole thing is a crock that needs to be
      redesigned, but not today.)
      
      However, I intentionally didn't make it work "exactly right" for the cases
      of timezone and log_timezone.  The exactly right behavior would involve
      running select_default_timezone, which we'd have to do independently in
      each postgres process, causing the whole database to become entirely
      unresponsive for as much as several seconds.  That didn't seem like a good
      idea, especially since the variable's removal from postgresql.conf might be
      just an accidental edit.  Instead the behavior is to adopt the previously
      active setting as if it were default.
      
      Note that this patch creates an ABI break for extensions that use any of
      the PGC_S_XXX constants; they'll need to be recompiled.
      e05b8664