1. 16 Nov, 2001 13 commits
  2. 15 Nov, 2001 12 commits
  3. 14 Nov, 2001 7 commits
  4. 13 Nov, 2001 5 commits
  5. 12 Nov, 2001 3 commits
    • 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
    • Bruce Momjian's avatar
      Update TODO list. · 9c9ea41b
      Bruce Momjian authored
      9c9ea41b
    • Tom Lane's avatar
      If the alternatives for a CASE construct all have the same typmod, · d4d23852
      Tom Lane authored
      use that typmod not -1 as the typmod of the CASE result.
      Part of response to bug#513.
      d4d23852