1. 05 5月, 2009 2 次提交
  2. 04 5月, 2009 10 次提交
  3. 03 5月, 2009 5 次提交
    • T
      Update UTF-8 <--> EUC_KR, JOHAB, UHC mappings. · 5c7f5534
      Tatsuo Ishii 提交于
      Patch contributed by Chuck McDevitt
      5c7f5534
    • T
      Install some simple defenses in postmaster startup to help ensure a useful · d90984f4
      Tom Lane 提交于
      error message if the installation directory layout is messed up (or at least,
      something more useful than the behavior exhibited in bug #4787).  During
      postmaster startup, check that get_pkglib_path resolves as a readable
      directory; and if ParseTzFile() fails to open the expected timezone
      abbreviation file, check the possibility that the directory is missing rather
      than just the specified file.  In case of either failure, issue a hint
      suggesting that the installation is broken.  These two checks cover the lib/
      and share/ trees of a full installation, which should take care of most
      scenarios where a sysadmin decides to get cute.
      d90984f4
    • T
      We don't need major_release_split any more. · a16e007c
      Tom Lane 提交于
      a16e007c
    • T
      Split the release notes into a separate file for each (active) major branch, · 008fad58
      Tom Lane 提交于
      as per my recent proposal.  release.sgml itself is now just a stub that should
      change rarely; ideally, only once per major release to add a new include line.
      Most editing work will occur in the release-N.N.sgml files.  To update a back
      branch for a minor release, just copy the appropriate release-N.N.sgml
      file(s) into the back branch.
      
      This commit doesn't change the end-product documentation at all, only the
      source layout.  However, it makes it easy to start omitting ancient information
      from newer branches' documentation, should we ever decide to do that.
      008fad58
    • T
      Fix plpgsql's EXIT so that an EXIT without a label only matches a loop, · c91bf01b
      Tom Lane 提交于
      never a BEGIN block.  This is required for Oracle compatibility and is
      also plainly stated to be the behavior by our original documentation
      (up until 8.1, in which the docs were adjusted to match the code's behavior;
      but actually the old docs said the correct thing and the code was wrong).
      
      Not back-patched because this introduces an incompatibility that could
      break working applications.  Requires release note.
      c91bf01b
  4. 02 5月, 2009 2 次提交
    • T
      Fix a couple of cases where the plpgsql grammar looked for T_WORD and · ccc6759d
      Tom Lane 提交于
      failed to consider the possibility that it would get T_SCALAR, T_RECORD,
      or T_ROW instead because the word happens to match a plpgsql variable name.
      In particular, give "duplicate declaration" rather than generic "syntax error"
      if the same identifier is declared twice in the same block, as per my recent
      complaint.  Also behave more sanely when decl_aliasitem or proc_condition or
      opt_lblname is coincidentally not T_WORD.  Refactor the related productions a
      bit to reduce duplication.
      
      This is a longstanding bug, but it doesn't seem critical enough to
      back-patch.
      ccc6759d
    • T
      When checking for datetime field overflow, we should allow a fractional-second · fe1b07a6
      Tom Lane 提交于
      part that rounds up to exactly 1.0 second.  The previous coding rejected input
      like "00:12:57.9999999999999999999999999999", with the exact number of nines
      needed to cause failure varying depending on float-timestamp option and
      possibly on platform.  Obviously this should round up to the next integral
      second, if we don't have enough precision to distinguish the value from that.
      Per bug #4789 from Robert Kruus.
      
      In passing, fix a missed check for fractional seconds in one copy of the
      "is it greater than 24:00:00" code.
      
      Broken all the way back, so patch all the way back.
      fe1b07a6
  5. 30 4月, 2009 1 次提交
  6. 29 4月, 2009 3 次提交
  7. 28 4月, 2009 3 次提交
  8. 27 4月, 2009 1 次提交
  9. 26 4月, 2009 4 次提交
    • T
      Remove Windows-specific definition of S_ISDIR(). This should not be here; · 1d3a1613
      Tom Lane 提交于
      if there are any Windows configurations where port/win32.h fails to
      provide the macro, it should be fixed in the latter file not here.
      1d3a1613
    • T
      Typo fix. · f5c572a8
      Tom Lane 提交于
      f5c572a8
    • T
      Update citext expected output to exactly match the real output, rather · 5efb84f2
      Tom Lane 提交于
      than having some whitespace discrepancy.  Although whitespace is supposed
      to be ignored in our regression tests, for some reason buildfarm member
      spoonbill doesn't like it.
      5efb84f2
    • T
      Fix the handling of sub-SELECTs appearing in the arguments of an outer-level · 20a3ddbb
      Tom Lane 提交于
      aggregate function.  By definition, such a sub-SELECT cannot reference any
      variables of query levels between itself and the aggregate's semantic level
      (else the aggregate would've been assigned to that lower level instead).
      So the correct, most efficient implementation is to treat the sub-SELECT as
      being a sub-select of that outer query level, not the level the aggregate
      syntactically appears in.  Not doing so also confuses the heck out of our
      parameter-passing logic, as illustrated in bug report from Daniel Grace.
      
      Fortunately, we were already copying the whole Aggref expression up to the
      outer query level, so all that's needed is to delay SS_process_sublinks
      processing of the sub-SELECT until control returns to the outer level.
      
      This has been broken since we introduced spec-compliant treatment of
      outer aggregates in 7.4; so patch all the way back.
      20a3ddbb
  10. 25 4月, 2009 2 次提交
  11. 24 4月, 2009 6 次提交
  12. 23 4月, 2009 1 次提交