1. 05 Mar, 2002 1 commit
  2. 04 Mar, 2002 12 commits
  3. 03 Mar, 2002 5 commits
  4. 02 Mar, 2002 5 commits
    • Tom Lane's avatar
    • Bruce Momjian's avatar
      Commit to match discussed elog() changes. Only update is that LOG is · a033daf5
      Bruce Momjian authored
      now just below FATAL in server_min_messages.  Added more text to
      highlight ordering difference between it and client_min_messages.
      
      ---------------------------------------------------------------------------
      
      REALLYFATAL => PANIC
      STOP => PANIC
      New INFO level the prints to client by default
      New LOG level the prints to server log by default
      Cause VACUUM information to print only to the client
      NOTICE => INFO where purely information messages are sent
      DEBUG => LOG for purely server status messages
      DEBUG removed, kept as backward compatible
      DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1 added
      DebugLvl removed in favor of new DEBUG[1-5] symbols
      New server_min_messages GUC parameter with values:
              DEBUG[5-1], INFO, NOTICE, ERROR, LOG, FATAL, PANIC
      New client_min_messages GUC parameter with values:
              DEBUG[5-1], LOG, INFO, NOTICE, ERROR, FATAL, PANIC
      Server startup now logged with LOG instead of DEBUG
      Remove debug_level GUC parameter
      elog() numbers now start at 10
      Add test to print error message if older elog() values are passed to elog()
      Bootstrap mode now has a -d that requires an argument, like postmaster
      a033daf5
    • Tom Lane's avatar
      Add code to allow profiling of backends on Linux: save and restore the · 8d8aa931
      Tom Lane authored
      profiling timer setting across fork().  The correct way to build a
      profilable backend on Linux is now gmake PROFILE="-pg -DLINUX_PROFILE"
      8d8aa931
    • Tom Lane's avatar
      Don't bother to request SSL connection over a Unix socket, since the · 78ab8034
      Tom Lane authored
      postmaster won't accept the request anyway.  (If your kernel can't
      be trusted, SSL will not help you.)
      78ab8034
    • Tom Lane's avatar
      Array slice extraction should produce a result array with index lower · 608d843e
      Tom Lane authored
      bounds of 1, not the lower bound subscripts of the original slice.
      Per bug report from Andre Holzner, 1-Feb-02.
      608d843e
  5. 01 Mar, 2002 8 commits
  6. 27 Feb, 2002 8 commits
  7. 26 Feb, 2002 1 commit
    • Tom Lane's avatar
      Restructure command-completion-report code so that there is just one · 56ee2ecb
      Tom Lane authored
      report for each received SQL command, regardless of rewriting activity.
      Also ensure that this report comes from the 'original' command, not the
      last command generated by rewrite; this fixes 7.2 breakage for INSERT
      commands that have actions added by rules.  Fernando Nasser and Tom Lane.
      56ee2ecb