1. 03 3月, 2002 4 次提交
    • T
      Cause regression tests to pass again after elog changes. · ce7a4f06
      Tom Lane 提交于
      ce7a4f06
    • T
      cfae62c4
    • B
      Commit to match discussed elog() changes. Only update is that LOG is · a033daf5
      Bruce Momjian 提交于
      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
    • T
      Add code to allow profiling of backends on Linux: save and restore the · 8d8aa931
      Tom Lane 提交于
      profiling timer setting across fork().  The correct way to build a
      profilable backend on Linux is now gmake PROFILE="-pg -DLINUX_PROFILE"
      8d8aa931
  2. 02 3月, 2002 7 次提交
  3. 01 3月, 2002 3 次提交
  4. 28 2月, 2002 5 次提交
  5. 27 2月, 2002 4 次提交
  6. 26 2月, 2002 11 次提交
  7. 25 2月, 2002 6 次提交
    • B
      Update completed items: · 73a947bd
      Bruce Momjian 提交于
      > * -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
    • B
      This patch will allow arbitrary levels of analyze / rewriting · b4a09eaa
      Bruce Momjian 提交于
      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
    • T
      Try to make makefile actually work ... · d6198ee3
      Tom Lane 提交于
      d6198ee3
    • B
      Fix typo in Makefile. · 17f99139
      Bruce Momjian 提交于
      17f99139
    • B
      I've attached a simple patch which should improve the performance of · f5dff447
      Bruce Momjian 提交于
      hashname() and reduce the penalty incured when NAMEDATALEN is increased.
      I posted this to -hackers a couple days ago, and there haven't been any
      major complaints. It passes the regression tests. See -hackers for more
      discussion, as well as the suggestion from Tom Lane on which this patch
      is based.
      
      Unless anyone sees any problems, please apply for 7.3.
      
      Cheers,
      
      Neil Conway
      f5dff447
    • B
      Fix typo in filename. · 7464e7f2
      Bruce Momjian 提交于
      7464e7f2