1. 03 Mar, 2002 5 commits
  2. 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
  3. 01 Mar, 2002 8 commits
  4. 27 Feb, 2002 8 commits
  5. 26 Feb, 2002 4 commits
  6. 25 Feb, 2002 10 commits
    • Tom Lane's avatar
      Tweak psql's \connect command to not downcase unquoted database and user · 86a07143
      Tom Lane authored
      names.  This is a temporary measure to allow backwards compatibility with
      7.2 and earlier pg_dump.  7.2.1 and later pg_dump will double-quote mixed
      case names in \connect.  Once we feel that older dumps are not a problem
      anymore, we can revert this change and treat \connect arguments as normal
      SQL identifiers.
      86a07143
    • Bruce Momjian's avatar
      Added: · 7cfbbb25
      Bruce Momjian authored
      > * Remove memory/file descriptor freeing befor elog(ERROR)  (Bruce)
      7cfbbb25
    • Bruce Momjian's avatar
      Update FAQ_DEV. · c0cbb261
      Bruce Momjian authored
      c0cbb261
    • Bruce Momjian's avatar
      Update FAQ. · 2673547c
      Bruce Momjian authored
      2673547c
    • Bruce Momjian's avatar
      Fix for PAM error message display: · f75e16d4
      Bruce Momjian authored
      > and that the right fix is to make each of the subsequent calls be in
      > this same pattern, not to try to emulate their nonsensical style.
      
      Dominic J. Eidson
      f75e16d4
    • Bruce Momjian's avatar
      Add items and JDBC maintainers: · 9694a41a
      Bruce Momjian authored
      > 	o Add LISTEN/NOTIFY support to the JDBC driver (Barry)
      479a481
      > * Barry is Barry Lind <barry@xythos.com>
      482a485
      > * Dave is Dave Cramer <dave@fastcrypt.com>
      9694a41a
    • Tom Lane's avatar
      Add note that BLCKSZ must be a power of 2. · f70a7e38
      Tom Lane authored
      f70a7e38
    • Thomas G. Lockhart's avatar
      Add a large number of time zones to the lookup table. · c1911c94
      Thomas G. Lockhart authored
      Fix a few apparently-wrong TZ vs DTZ declarations.
      c1911c94
    • Bruce Momjian's avatar
      Update completed items: · 73a947bd
      Bruce Momjian authored
      > * -Prevent SIGHUP and 'pg_ctl reload' from changing command line
      > * -Remove LIMIT #,# and force use LIMIT and OFFSET clauses in 7.3 (Bruce)
      > * -Prevent create/drop scripts from allowing extra args (Bruce)
      > * -Have pg_dump -C dump database location and encoding information
      73a947bd
    • Bruce Momjian's avatar
      This patch will allow arbitrary levels of analyze / rewriting · b4a09eaa
      Bruce Momjian authored
      by making the static variables extra_before and extra_after
      automatic so we can use recursion.
      
      It gets much easier to generate extra commands now, and one can rest
      assured that the extra commands will be properly analyzed/rewritten.
      
      
      Without this patch, if a command produced by transformation tries to
      use these static lists their first contents would be lost with
      unpredictable results.  I know I could fix this by just using nconc()
      instead of assignments, but the resulting order of the commands would
      not be exactly what one could expect.
      
      --
      Fernando Nasser
      b4a09eaa