1. 22 5月, 2003 3 次提交
  2. 21 5月, 2003 1 次提交
  3. 20 5月, 2003 4 次提交
  4. 19 5月, 2003 3 次提交
  5. 18 5月, 2003 1 次提交
    • T
      Add code to test for unknown timezone names (following some ideas from · 6d7ff848
      Tom Lane 提交于
      Ross Reedstrom, a couple months back) and to detect timezones that are
      using leap-second timekeeping.  The unknown-zone-name test is pretty
      heuristic and ugly, but it seems better than the old behavior of just
      switching to GMT given a bad name.  Also make DecodePosixTimezone() a
      tad more robust.
      6d7ff848
  6. 17 5月, 2003 2 次提交
  7. 16 5月, 2003 13 次提交
  8. 15 5月, 2003 3 次提交
  9. 14 5月, 2003 5 次提交
  10. 13 5月, 2003 4 次提交
  11. 12 5月, 2003 1 次提交
    • T
      Apply fixes for problems with dropped columns whose types have also been · d97c9b36
      Tom Lane 提交于
      dropped.  The simplest fix for INSERT/UPDATE cases turns out to be for
      preptlist.c to insert NULLs of a known-good type (I used INT4) rather
      than making them match the deleted column's type.  Since the representation
      of NULL is actually datatype-independent, this should work fine.
      I also re-reverted the patch to disable the use_physical_tlist optimization
      in the presence of dropped columns.  It still doesn't look worth the
      trouble to be smarter, if there are no other bugs to fix.
      Added a regression test to catch future problems in this area.
      d97c9b36