1. 02 12月, 2006 3 次提交
  2. 01 12月, 2006 2 次提交
    • T
      Minor adjustments to make failures in startup/shutdown behave more cleanly. · 5f60086e
      Tom Lane 提交于
      StartupXLOG and ShutdownXLOG no longer need to be critical sections, because
      in all contexts where they are invoked, elog(ERROR) would be translated to
      elog(FATAL) anyway.  (One change in bgwriter.c is needed to make this true:
      set ExitOnAnyError before trying to exit.  This is a good fix anyway since
      the existing code would have gone into an infinite loop on elog(ERROR) during
      shutdown.)  That avoids a misleading report of PANIC during semi-orderly
      failures.  Modify the postmaster to include the startup process in the set of
      processes that get SIGTERM when a fast shutdown is requested, and also fix it
      to not try to restart the bgwriter if the bgwriter fails while trying to write
      the shutdown checkpoint.  Net result is that "pg_ctl stop -m fast" does
      something reasonable for a system in warm standby mode, and so should Unix
      system shutdown (ie, universal SIGTERM).  Per gripe from Stephen Harris and
      some corner-case testing of my own.
      5f60086e
    • T
      Fix bug with page deletion. If inner page is removed and it tries to · ef148d6b
      Teodor Sigaev 提交于
      remove page on next level linked from next inner page, ginScanToDelete()
      wrongly sets parent page. Bug reveals when many item pointers from index
      was deleted ( several hundred thousands).
      
      Bug is discovered by hubert depesz lubaczewski <depesz@gmail.com>
      
      Suppose, we need rc2 before release...
      ef148d6b
  3. 30 11月, 2006 2 次提交
  4. 29 11月, 2006 3 次提交
    • P
      Spelling fix · 0943799f
      Peter Eisentraut 提交于
      0943799f
    • T
      Update timezone data to tzdata2006p zic distribution. It seems Western · 765cc158
      Tom Lane 提交于
      Australia decided to institute DST with one month's notice ... way to go,
      politicians.
      765cc158
    • T
      Mark to_char(timestamp without timezone) as stable, not immutable, since its · 64353640
      Tom Lane 提交于
      result now depends on the lc_messages setting, as noted by Bruce.
      Also, mark to_number() and the numeric-type variants of to_char() as stable,
      because their results depend on lc_numeric; this is a longstanding oversight.
      Also, mark to_date() and to_char(interval) as stable; although these appear
      not to depend on any GUC variables as of CVS HEAD, that seems a property
      unlikely to survive future improvements.  It seems best to mark all the
      formatting functions stable and be done with it.
      catversion not bumped, because this does not seem critical enough to force
      a post-RC1 initdb, and anyway we cannot do so in the back branches.
      64353640
  5. 28 11月, 2006 5 次提交
  6. 27 11月, 2006 1 次提交
  7. 25 11月, 2006 7 次提交
  8. 24 11月, 2006 4 次提交
  9. 23 11月, 2006 5 次提交
  10. 22 11月, 2006 8 次提交
    • T
      Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF in · 617f123f
      Tom Lane 提交于
      some of the Windows-only makefiles; the correct place to assert these
      things is pg_config.h.win32.  Per bug #2677.
      617f123f
    • T
      Translate Windows' GMT Standard Time/GMT Daylight Time zones to · d735804f
      Tom Lane 提交于
      zic's Europe/London, rather than Europe/Dublin as before.  This seems
      a less surprising choice, particularly with respect to dates before
      1948.  Original suggestion was to translate to straight GMT, but this
      seems wrong given that these zones *are* DST-aware.  Per offlist
      discussion with Magnus.
      d735804f
    • T
      Prevent intratransaction memory leak when a subtransaction is aborted · 7ec1c5a8
      Tom Lane 提交于
      in the middle of executing a SPI query.  This doesn't entirely fix the
      problem of memory leakage in plpgsql exception handling, but it should
      get rid of the lion's share of leakage.
      7ec1c5a8
    • T
      Suppress timezone (%Z) part of timestamp display when running on Windows, · 5fc2d7e4
      Tom Lane 提交于
      because on that platform strftime produces localized zone names in varying
      encodings.  Even though it's only in a comment, this can cause encoding
      errors when reloading the dump script.  Per suggestion from Andreas
      Seltenreich.  Also, suppress %Z on Windows in the %s escape of
      log_line_prefix ... not sure why this one is different from the other two,
      but it shouldn't be.
      5fc2d7e4
    • T
      Fix plpython to work (or at least pass its regression tests) with · c714e5cb
      Tom Lane 提交于
      python 2.5.  This involves fixing several violations of the published
      spec for creating PyTypeObjects, and adding another regression test
      expected output for yet another variation of error message spelling.
      c714e5cb
    • T
      On systems that have setsid(2) (which should be just about everything except · 3ad0728c
      Tom Lane 提交于
      Windows), arrange for each postmaster child process to be its own process
      group leader, and deliver signals SIGINT, SIGTERM, SIGQUIT to the whole
      process group not only the direct child process.  This provides saner behavior
      for archive and recovery scripts; in particular, it's possible to shut down a
      warm-standby recovery server using "pg_ctl stop -m immediate", since delivery
      of SIGQUIT to the startup subprocess will result in killing the waiting
      recovery_command.  Also, this makes Query Cancel and statement_timeout apply
      to scripts being run from backends via system().  (There is no support in the
      core backend for that, but it's widely done using untrusted PLs.)  Per gripe
      from Stephen Harris and subsequent discussion.
      3ad0728c
    • N
      VC build patch from Magnus: · 66eda1c7
      Neil Conway 提交于
      Typo in the changes to plperl - uses wrong dir, and had a missing slash.
      
      Also fixes error checking for xsubpp - it was broken in a way that hid
      the problem above when run more than once (which is the normal case when
      developing).
      66eda1c7
    • A
      f87fcd43