Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1b184c9

Browse files
committed
Done:
< * %Make row-wise comparisons work per SQL spec > * -Make row-wise comparisons work per SQL spec
1 parent 6e07709 commit 1b184c9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/TODO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PostgreSQL TODO List
33
====================
44
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
5-
Last updated: Mon Dec 26 00:14:46 EST 2005
5+
Last updated: Tue Dec 27 21:12:26 EST 2005
66

77
The most recent version of this document can be viewed at
88
http://www.postgresql.org/docs/faqs.TODO.html.
@@ -390,7 +390,7 @@ SQL Commands
390390
creation
391391
* %Add COMMENT ON for all cluster global objects (roles, databases
392392
and tablespaces)
393-
* %Make row-wise comparisons work per SQL spec
393+
* -Make row-wise comparisons work per SQL spec
394394

395395
Right now, '(a, b) < (1, 2)' is processed as 'a < 1 and b < 2', but
396396
the SQL standard requires it to be processed as a column-by-column

doc/src/FAQ/TODO.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
99
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
1010
<p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/>
11-
Last updated: Mon Dec 26 00:14:46 EST 2005
11+
Last updated: Tue Dec 27 21:12:26 EST 2005
1212
</p>
1313
<p>The most recent version of this document can be viewed at<br/>
1414
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
@@ -358,7 +358,7 @@ <h1><a name="section_8">SQL Commands</a></h1>
358358
creation
359359
</li><li>%Add COMMENT ON for all cluster global objects (roles, databases
360360
and tablespaces)
361-
</li><li>%Make row-wise comparisons work per SQL spec
361+
</li><li>-<em>Make row-wise comparisons work per SQL spec</em>
362362
<p> Right now, '(a, b) &lt; (1, 2)' is processed as 'a &lt; 1 and b &lt; 2', but
363363
the SQL standard requires it to be processed as a column-by-column
364364
comparison, so the proper comparison is '(a &lt; 1) OR (a = 1 AND b &lt; 2)'.

0 commit comments

Comments
 (0)