1. 17 Nov, 2001 2 commits
    • Tom Lane's avatar
      Fix performance problems in TOAST compressor. The management of · 6b516f59
      Tom Lane authored
      search lists was broken in such a way that only the most recent
      instance of a given hash code would ever be searched, thus possibly
      missing longer matches further back.  Fixing this gave 5 to 10%
      compression improvement on some text test cases.  Additional small
      tweaks to improve speed of inner loops a little bit.  There is no
      compatibility issue created by this change, since the compressed data
      format and decompression algorithm don't change.
      6b516f59
    • Bruce Momjian's avatar
      Update Japanese FAQ's. · dc6efa44
      Bruce Momjian authored
      dc6efa44
  2. 16 Nov, 2001 13 commits
  3. 15 Nov, 2001 12 commits
  4. 14 Nov, 2001 7 commits
  5. 13 Nov, 2001 5 commits
  6. 12 Nov, 2001 1 commit
    • Tom Lane's avatar
      Tweak parser so that there is a defined representation for datatypes · a585c20d
      Tom Lane authored
      bpchar, bit, numeric with typmod -1.  Alter format_type so that this
      representation is printed when the typmod is -1.  This ensures that
      tables having such columns can be pg_dump'd and reloaded correctly.
      Also, remove the rather useless and non-SQL-compliant default
      precision and scale for type NUMERIC.  A numeric column declared as
      such (with no precision/scale) will now have typmod -1 which means
      that numeric values of any precision/scale can be stored in it,
      without conversion to a uniform scale.  This seems significantly
      more useful than the former behavior.  Part of response to bug #513.
      a585c20d