1. 18 Feb, 2010 6 commits
  2. 17 Feb, 2010 10 commits
  3. 16 Feb, 2010 13 commits
  4. 15 Feb, 2010 9 commits
  5. 14 Feb, 2010 2 commits
    • Robert Haas's avatar
      Wrap calls to SearchSysCache and related functions using macros. · e26c539e
      Robert Haas authored
      The purpose of this change is to eliminate the need for every caller
      of SearchSysCache, SearchSysCacheCopy, SearchSysCacheExists,
      GetSysCacheOid, and SearchSysCacheList to know the maximum number
      of allowable keys for a syscache entry (currently 4).  This will
      make it far easier to increase the maximum number of keys in a
      future release should we choose to do so, and it makes the code
      shorter, too.
      
      Design and review by Tom Lane.
      e26c539e
    • Greg Stark's avatar
      Make CREATE DATABASE safe against losing whole files by fsyncing the · 1012492b
      Greg Stark authored
      directory and not just the individual files.
      
      Back-patch to 8.1 -- before that we just called "cp -r" and never
      fsynced anything anyways.
      1012492b