mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Done:
< * %Make row-wise comparisons work per SQL spec > * -Make row-wise comparisons work per SQL spec
This commit is contained in:
		
							
								
								
									
										4
									
								
								doc/TODO
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								doc/TODO
									
									
									
									
									
								
							@@ -2,7 +2,7 @@
 | 
				
			|||||||
PostgreSQL TODO List
 | 
					PostgreSQL TODO List
 | 
				
			||||||
====================
 | 
					====================
 | 
				
			||||||
Current maintainer:	Bruce Momjian (pgman@candle.pha.pa.us)
 | 
					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
 | 
					The most recent version of this document can be viewed at
 | 
				
			||||||
http://www.postgresql.org/docs/faqs.TODO.html.
 | 
					http://www.postgresql.org/docs/faqs.TODO.html.
 | 
				
			||||||
@@ -390,7 +390,7 @@ SQL Commands
 | 
				
			|||||||
  creation
 | 
					  creation
 | 
				
			||||||
* %Add COMMENT ON for all cluster global objects (roles, databases
 | 
					* %Add COMMENT ON for all cluster global objects (roles, databases
 | 
				
			||||||
  and tablespaces)
 | 
					  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
 | 
					  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
 | 
					  the SQL standard requires it to be processed as a column-by-column
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,7 +8,7 @@
 | 
				
			|||||||
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
 | 
					<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
 | 
				
			||||||
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
 | 
					<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/>
 | 
					<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>
 | 
				
			||||||
<p>The most recent version of this document can be viewed at<br/>
 | 
					<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>.
 | 
					<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
 | 
					  creation
 | 
				
			||||||
  </li><li>%Add COMMENT ON for all cluster global objects (roles, databases
 | 
					  </li><li>%Add COMMENT ON for all cluster global objects (roles, databases
 | 
				
			||||||
  and tablespaces)
 | 
					  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) < (1, 2)' is processed as 'a < 1 and b < 2', but
 | 
					<p>  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
 | 
					  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)'.
 | 
					  comparison, so the proper comparison is '(a < 1) OR (a = 1 AND b < 2)'.
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user