1. 26 Mar, 2005 1 commit
  2. 25 Mar, 2005 14 commits
  3. 24 Mar, 2005 14 commits
  4. 23 Mar, 2005 11 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
    • Bruce Momjian's avatar
      Update numbers in example: · d27061a3
      Bruce Momjian authored
      < * Add support for ANSI date INTERVAL syntax, INTERVAL '9-3' YEAR TO MONTH
      > * Add support for ANSI date INTERVAL syntax, INTERVAL '20-6' YEAR TO MONTH
      d27061a3
    • Bruce Momjian's avatar
      Update: · 70d782e6
      Bruce Momjian authored
      < * Add support for ANSI date INTERVAL syntax, INTERVAL '1-2' YEAR TO MONTH
      > * Add support for ANSI date INTERVAL syntax, INTERVAL '9-3' YEAR TO MONTH
      70d782e6
    • Neil Conway's avatar
      Adjust CREATE TRIGGER and ALTER TABLE ... ADD FOREIGN KEY to acquire · f30c76ce
      Neil Conway authored
      ExclusiveLock rather than AccessExclusiveLock. This will allow concurrent
      SELECT queries to proceed on the table. Per discussion with Andrew at
      SuperNews.
      f30c76ce
    • Bruce Momjian's avatar
      Add: · ac323044
      Bruce Momjian authored
      > 	o Add MOVE to PL/pgSQL
      ac323044
    • Bruce Momjian's avatar
      Assign: · f6c1f990
      Bruce Momjian authored
      > 	o Update pg_dump and psql to use the new COPY libpq API (Christopher)
      f6c1f990
    • Bruce Momjian's avatar
      Add: · 9be9c1fb
      Bruce Momjian authored
      >
      > * Interpret INTERVAL '1:30' MINUTE TO SECOND as '1 minute 30 seconds'
      9be9c1fb
    • Bruce Momjian's avatar
      Add INTERVAL items: · 3113d38b
      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 '1-2' YEAR TO MONTH
      > * Process mixed ANSI/PG INTERVAL syntax, and round value to requested precision
      184a188,189
      >   Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS INTERVAL
      >   MONTH), and this should return '12 months'
      3113d38b