1. 06 1月, 2007 1 次提交
    • A
      · 226e9fff
      Andrew Dunstan 提交于
      Call setrlimit if possible in pg_regress to allow core file generation, and provide a switch for similar behaviour in pg_ctl.
      226e9fff
  2. 12 10月, 2006 1 次提交
  3. 04 10月, 2006 1 次提交
  4. 25 9月, 2006 1 次提交
  5. 21 8月, 2006 1 次提交
  6. 25 6月, 2006 1 次提交
  7. 18 6月, 2006 1 次提交
  8. 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
  9. 05 3月, 2006 1 次提交
  10. 11 2月, 2006 1 次提交
  11. 07 2月, 2006 1 次提交
  12. 14 1月, 2006 1 次提交
  13. 05 1月, 2006 1 次提交
  14. 23 11月, 2005 1 次提交
  15. 15 10月, 2005 1 次提交
  16. 25 7月, 2005 1 次提交
  17. 11 7月, 2005 1 次提交
  18. 21 6月, 2005 1 次提交
    • T
      Cause initdb to create a third standard database "postgres", which · 6f7fc0ba
      Tom Lane 提交于
      unlike template0 and template1 does not have any special status in
      terms of backend functionality.  However, all external utilities such
      as createuser and createdb now connect to "postgres" instead of
      template1, and the documentation is changed to encourage people to use
      "postgres" instead of template1 as a play area.  This should fix some
      longstanding gotchas involving unexpected propagation of database
      objects by createdb (when you used template1 without understanding
      the implications), as well as ameliorating the problem that CREATE
      DATABASE is unhappy if anyone else is connected to template1.
      Patch by Dave Page, minor editing by Tom Lane.  All per recent
      pghackers discussions.
      6f7fc0ba
  19. 05 5月, 2005 1 次提交
  20. 21 4月, 2005 1 次提交
  21. 12 3月, 2005 1 次提交
  22. 22 2月, 2005 1 次提交
  23. 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
  24. 23 12月, 2004 1 次提交
  25. 22 12月, 2004 2 次提交
  26. 06 12月, 2004 1 次提交
  27. 28 11月, 2004 1 次提交
  28. 18 11月, 2004 2 次提交
  29. 05 11月, 2004 1 次提交
  30. 28 10月, 2004 2 次提交
  31. 22 10月, 2004 1 次提交
    • T
      Prevent pg_ctl from being run as root. Since it uses configuration files · c58675b4
      Tom Lane 提交于
      owned by postgres, doing "pg_ctl start" as root could allow a privilege
      escalation attack, as pointed out by iDEFENSE.  Of course the postmaster would
      fail, but we ought to fail a little sooner to protect sysadmins unfamiliar
      with Postgres.  The chosen fix is to disable root use of pg_ctl in all cases,
      just to be confident there are no other holes.
      c58675b4
  32. 19 10月, 2004 1 次提交
  33. 16 10月, 2004 2 次提交
  34. 15 10月, 2004 3 次提交
    • B
      Fix pg_ctl -D handling for Win32: · 8613eac6
      Bruce Momjian 提交于
      	C:\msys\1.0\home\y-asaba>pg_ctl -D data restart
      	waiting for postmaster to shut down...LOG:  received smart shutdown
      	request.
      	LOG:  shutting down
      	LOG:  database system is shut down
      	done
      	postmaster stopped
      
      	postmaster starting
      
      	C:\msys\1.0\home\y-asaba>postmaster.exe: invalid argument: "'-D'"
      	Try "postmaster.exe --help" for more information.
      
      Yoshiyuki Asaba
      8613eac6
    • B
      a49f6ad0
    • N
      psql code cleanup: · 8ff374ce
      Neil Conway 提交于
      - refactor a bunch of code to call a separate function print_msg() which
      checks whether "silent mode" is enabled before printing an error
      message.
      
      - rename "silence_mode" to "silent_mode", which IMHO makes more sense
      
      - make the error messages we emit in "waiting" mode more consistent; I
      believe this fixes a recent error message regression
      8ff374ce