1. 07 6月, 2001 1 次提交
    • T
      Adjust WAL code so that checkpoints truncate the xlog at the previous · 1173344e
      Tom Lane 提交于
      checkpoint's redo pointer, not its undo pointer, per discussion in
      pghackers a few days ago.  No point in hanging onto undo information
      until we have the ability to do something with it --- and this solves
      a rather large problem with log space for long-running transactions.
      Also, change all calls of write() to detect the case where write
      returned a count less than requested, but failed to set errno.
      Presume that this situation indicates ENOSPC, and give the appropriate
      error message, rather than a random message associated with the previous
      value of errno.
      1173344e
  2. 06 6月, 2001 3 次提交
  3. 05 6月, 2001 10 次提交
  4. 03 6月, 2001 6 次提交
    • P
      Mark many strings in backend not covered by elog for translation. Also, · 12c15520
      Peter Eisentraut 提交于
      make strings in xlog.c look more like English and less like binary noise.
      12c15520
    • T
      Accept and output '-Infinity' as well as 'Infinity', per long-ago · 277a47ad
      Tom Lane 提交于
      suggestion from Ross Reedstrom.  Still needs work to make those symbols
      convert to actual IEEE infinities (on machines where such things exist).
      277a47ad
    • B
      Update TODO list. · 1df27f9a
      Bruce Momjian 提交于
      1df27f9a
    • T
      Tweak sorting so that nulls appear at the front of a descending sort · 5433b483
      Tom Lane 提交于
      (vs. at the end of a normal sort).  This ensures that explicit sorts
      yield the same ordering as a btree index scan.  To be really sure that
      that equivalence holds, we use the btree entries in pg_amop to decide
      whether we are looking at a '<' or '>' operator.  For a sort operator
      that has no btree association, we put the nulls at the front if the
      operator is named '>' ... pretty grotty, but it does the right thing in
      simple ASC and DESC cases, and at least there's no possibility of getting
      a different answer depending on the plan type chosen.
      5433b483
    • P
      Native Language Support (NLS) · e5420364
      Peter Eisentraut 提交于
      Use --enable-nls to turn it on; see installation instructions for details.
      See developer's guide how to make use of it in programs and how to add
      translations.
      
      psql sources have been almost fully prepared and an incomplete German
      translation has been provided.  In the backend, only elog() calls are
      currently translatable, and the provided German translation file is more
      of a placeholder.
      e5420364
    • T
      Paranoia about unordered comparisons in IEEE float math. If we are · 58193c5f
      Tom Lane 提交于
      given values that compare as unordered, make sure we reply that they
      are equal, which is better than giving an arbitrary answer --- at least
      it doesn't depend on which one is passed as which arg.
      58193c5f
  5. 02 6月, 2001 9 次提交
  6. 01 6月, 2001 10 次提交
  7. 31 5月, 2001 1 次提交