1. 04 3月, 2002 3 次提交
    • B
      Update FAQ. · 5ab02fd1
      Bruce Momjian 提交于
      5ab02fd1
    • T
      Catcaches can now store negative entries as well as positive ones, to · 26ac2171
      Tom Lane 提交于
      speed up repetitive failed searches; per pghackers discussion in late
      January.  inval.c logic substantially simplified, since we can now treat
      inserts and deletes alike as far as inval events are concerned.  Some
      repair work needed in heap_create_with_catalog, which turns out to have
      been doing CommandCounterIncrement at a point where the new relation has
      non-self-consistent catalog entries.  With the new inval code, that
      resulted in assert failures during a relcache entry rebuild.
      26ac2171
    • B
      Update FAQ. · 592caa08
      Bruce Momjian 提交于
      592caa08
  2. 03 3月, 2002 5 次提交
    • B
      Default server_min_messages is NOTICE. · 343e47c2
      Bruce Momjian 提交于
      343e47c2
    • 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
  3. 02 3月, 2002 7 次提交
  4. 01 3月, 2002 3 次提交
  5. 28 2月, 2002 5 次提交
  6. 27 2月, 2002 4 次提交
  7. 26 2月, 2002 11 次提交
  8. 25 2月, 2002 2 次提交
    • 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