1. 27 Mar, 2005 1 commit
  2. 26 Mar, 2005 7 commits
  3. 25 Mar, 2005 14 commits
  4. 24 Mar, 2005 14 commits
  5. 23 Mar, 2005 4 commits
    • Bruce Momjian's avatar
      Update wording: · 8abba638
      Bruce Momjian authored
      < 	o Process mixed ANSI/PG syntax, and round value to requested
      < 	  precision or generate an error
      < 	o Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
      < 	  INTERVAL MONTH), and this should return '12 months'
      194a191,194
      > 	o Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
      > 	  INTERVAL MONTH), and this should return '12 months'
      > 	o Round or truncate values to the requested precision, e.g.
      > 	  INTERVAL '11 months' AS YEAR should return one or zero
      8abba638
    • Bruce Momjian's avatar
      Update item on ambiguous INTERVAL syntax: · d5dd9dbb
      Bruce Momjian authored
      < 	o Add support for day-time syntax, INTERVAL '1 2:03:04'
      > 	o Add support for day-time syntax, INTERVAL '1 2:03:04'
      192c192,194
      < 	o Interpret INTERVAL '1:30' MINUTE TO SECOND as '1 minute 30 seconds'
      > 	o Interpret syntax that isn't uniquely ANSI or PG, like '1:30' or
      > 	  '1' as ANSI syntax, e.g. interpret '1:30' MINUTE TO SECOND as
      > 	  '1 minute 30 seconds'
      d5dd9dbb
    • Bruce Momjian's avatar
      Update ANSI INTERVAL section: · a15699b9
      Bruce Momjian authored
      < * Add support for ANSI time INTERVAL syntax, INTERVAL '1 2:03:04' DAY TO SECOND
      < * Add support for ANSI date INTERVAL syntax, INTERVAL '20-6' YEAR TO MONTH
      < * Process mixed ANSI/PG INTERVAL syntax, and round value to requested precision
      <
      <   Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS INTERVAL
      <   MONTH), and this should return '12 months'
      <
      < * Interpret INTERVAL '1:30' MINUTE TO SECOND as '1 minute 30 seconds'
      > * Add ANSI INTERVAL handling
      > 	o Add support for day-time syntax, INTERVAL '1 2:03:04'
      > 	  DAY TO SECOND
      > 	o Add support for year-month syntax, INTERVAL '50-6' YEAR TO MONTH
      > 	o Process mixed ANSI/PG syntax, and round value to requested
      > 	  precision or generate an error
      > 	o Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
      > 	  INTERVAL MONTH), and this should return '12 months'
      > 	o Interpret INTERVAL '1:30' MINUTE TO SECOND as '1 minute 30 seconds'
      > 	o Support precision, CREATE TABLE foo (a INTERVAL MONTH(3))
      a15699b9
    • Tom Lane's avatar
      Add note about risks involved in replaying CREATE TABLESPACE commands · 87ba04ee
      Tom Lane authored
      from WAL.  A couple other grammatical improvements too.
      87ba04ee