summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-12-28 02:12:25 +0000
committerBruce Momjian <bruce@momjian.us>2005-12-28 02:12:25 +0000
commit1b184c990f6aa50679ebccbf16d5bba4d7374ec6 (patch)
tree12fc4da106d05dd0a04be6d2f6cba19ded2519f4 /doc/src
parent6e07709760a29d8dbfb93b9846c905bd40689082 (diff)
Done:
< * %Make row-wise comparisons work per SQL spec > * -Make row-wise comparisons work per SQL spec
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/FAQ/TODO.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html
index 74f71f5fc63..44f628924ce 100644
--- a/doc/src/FAQ/TODO.html
+++ b/doc/src/FAQ/TODO.html
@@ -8,7 +8,7 @@
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
<p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/>
-Last updated: Mon Dec 26 00:14:46 EST 2005
+Last updated: Tue Dec 27 21:12:26 EST 2005
</p>
<p>The most recent version of this document can be viewed at<br/>
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
@@ -358,7 +358,7 @@ first.
creation
</li><li>%Add COMMENT ON for all cluster global objects (roles, databases
and tablespaces)
- </li><li>%Make row-wise comparisons work per SQL spec
+ </li><li>-<em>Make row-wise comparisons work per SQL spec</em>
<p> Right now, '(a, b) &lt; (1, 2)' is processed as 'a &lt; 1 and b &lt; 2', but
the SQL standard requires it to be processed as a column-by-column
comparison, so the proper comparison is '(a &lt; 1) OR (a = 1 AND b &lt; 2)'.