1. 11 12月, 2008 1 次提交
  2. 17 4月, 2008 1 次提交
  3. 31 3月, 2008 1 次提交
    • T
      Fix a number of places that were making file-type tests infelicitously. · c5f11f9d
      Tom Lane 提交于
      The places that did, eg,
      	(statbuf.st_mode & S_IFMT) == S_IFDIR
      were correct, but there is no good reason not to use S_ISDIR() instead,
      especially when that's what the other 90% of our code does.  The places
      that did, eg,
      	(statbuf.st_mode & S_IFDIR)
      were flat out *wrong* and would fail in various platform-specific ways,
      eg a symlink could be mistaken for a regular file on most Unixen.
      
      The actual impact of this is probably small, since the problem cases
      seem to always involve symlinks or sockets, which are unlikely to be
      found in the directories that PG code might be scanning.  But it's
      clearly trouble waiting to happen, so patch all the way back anyway.
      (There seem to be no occurrences of the mistake in 7.4.)
      c5f11f9d
  4. 29 2月, 2008 1 次提交
  5. 02 1月, 2008 1 次提交
  6. 16 11月, 2007 1 次提交
  7. 30 1月, 2007 2 次提交
  8. 28 1月, 2007 5 次提交
  9. 23 1月, 2007 4 次提交
  10. 06 1月, 2007 1 次提交
  11. 12 9月, 2006 1 次提交
  12. 08 6月, 2006 1 次提交
    • B
      Prepare code to be built by MSVC: · 399a36a7
      Bruce Momjian 提交于
      	o  remove many WIN32_CLIENT_ONLY defines
      	o  add WIN32_ONLY_COMPILER define
      	o  add 3rd argument to open() for portability
      	o  add include/port/win32_msvc directory for
      	   system includes
      
      Magnus Hagander
      399a36a7
  13. 05 3月, 2006 1 次提交
  14. 23 11月, 2005 1 次提交
  15. 15 10月, 2005 1 次提交
  16. 22 2月, 2005 1 次提交
  17. 15 1月, 2005 1 次提交
  18. 01 1月, 2005 1 次提交
    • P
      · 2ff50159
      PostgreSQL Daemon 提交于
      Tag appropriate files for rc3
      
      Also performed an initial run through of upgrading our Copyright date to
      extend to 2005 ... first run here was very simple ... change everything
      where: grep 1996-2004 && the word 'Copyright' ... scanned through the
      generated list with 'less' first, and after, to make sure that I only
      picked up the right entries ...
      2ff50159
  19. 25 12月, 2004 1 次提交
    • T
      Remove 'optimization' to skip resolve_symlinks() when the found · f0c08ae7
      Tom Lane 提交于
      executable file isn't itself a symlink.  We still need to run the
      algorithm so that any directory symlinks in the path to the
      executable are replaced by a true path.  Noticed this on seeing
      pg_config give me a completely wrong answer for --pkglibdir when
      I called it through a symlink to the installation bindir.
      f0c08ae7
  20. 21 12月, 2004 1 次提交
  21. 28 11月, 2004 1 次提交
  22. 07 11月, 2004 1 次提交
  23. 06 11月, 2004 1 次提交
  24. 19 10月, 2004 1 次提交
  25. 07 10月, 2004 1 次提交
  26. 28 9月, 2004 3 次提交
  27. 29 8月, 2004 2 次提交
  28. 16 8月, 2004 2 次提交