From: Bruce Momjian Date: Wed, 28 Dec 2005 02:12:25 +0000 (+0000) Subject: Done: X-Git-Tag: REL9_0_0~8667 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1b184c990f6aa50679ebccbf16d5bba4d7374ec6;p=pg-rex%2Fsyncrep.git Done: < * %Make row-wise comparisons work per SQL spec > * -Make row-wise comparisons work per SQL spec --- diff --git a/doc/TODO b/doc/TODO index b27edd9f20..2bad00f5fe 100644 --- a/doc/TODO +++ b/doc/TODO @@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) -Last updated: Mon Dec 26 00:14:46 EST 2005 +Last updated: Tue Dec 27 21:12:26 EST 2005 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -390,7 +390,7 @@ SQL Commands creation * %Add COMMENT ON for all cluster global objects (roles, databases and tablespaces) -* %Make row-wise comparisons work per SQL spec +* -Make row-wise comparisons work per SQL spec Right now, '(a, b) < (1, 2)' is processed as 'a < 1 and b < 2', but the SQL standard requires it to be processed as a column-by-column diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index 74f71f5fc6..44f628924c 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@

PostgreSQL TODO List

Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
-Last updated: Mon Dec 26 00:14:46 EST 2005 +Last updated: Tue Dec 27 21:12:26 EST 2005

The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html. @@ -358,7 +358,7 @@ first. creation

  • %Add COMMENT ON for all cluster global objects (roles, databases and tablespaces) -
  • %Make row-wise comparisons work per SQL spec +
  • -Make row-wise comparisons work per SQL spec

    Right now, '(a, b) < (1, 2)' is processed as 'a < 1 and b < 2', but the SQL standard requires it to be processed as a column-by-column comparison, so the proper comparison is '(a < 1) OR (a = 1 AND b < 2)'.