1. 05 Mar, 2002 9 commits
  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 1 commit
    • Tom Lane's avatar
      Tweak pg_exec_query_string so that we close down transaction command · fdc60bd9
      Tom Lane authored
      before reporting command-complete message for the final command of a
      query string.  This way, any errors detected during finish_xact_command
      (such as RI violations) will appear to be part of the final command,
      rather than coming out after the command is reported complete.  This
      avoids confusing PQendcopy and other not-overly-bright clients.
      Per Lee Harr's bug report of 25-Feb-02.
      fdc60bd9