Update of /cvsroot/monetdb/sql/src/test/BugTracker-2009/Tests
In directory 
23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14234/src/test/BugTracker-2009/Tests

Modified Files:
        subtraction_between_two_columns.SF-2582389.sql 
Log Message:
propagated changes of Wednesday Feb 11 2009 - Thursday Feb 12 2009
from the Feb2009 branch to the development trunk

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2009/02/11 - romulog:
        
src/test/BugTracker-2009/Tests/subtraction_between_two_columns.SF-2582389.sql,1.1.2.3
The order by is missing...
It was removed with the previous check in where the table t2 was renamed
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: subtraction_between_two_columns.SF-2582389.sql
===================================================================
RCS file: 
/cvsroot/monetdb/sql/src/test/BugTracker-2009/Tests/subtraction_between_two_columns.SF-2582389.sql,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- subtraction_between_two_columns.SF-2582389.sql      10 Feb 2009 20:25:27 
-0000      1.3
+++ subtraction_between_two_columns.SF-2582389.sql      12 Feb 2009 15:50:53 
-0000      1.4
@@ -3,6 +3,6 @@
 insert into t2_2582389 values(1, 0.2);
 insert into t2_2582389 values(1, 0.4);
 
-select l.id, r.inst, l.inst, (r.inst - l.inst) as diff from t2_2582389 l,  
t2_2582389 r where r.id = l.id limit 2;
+select l.id, r.inst, l.inst, (r.inst - l.inst) as diff from t2_2582389 l,  
t2_2582389 r where r.id = l.id order by inst limit 2;
 
 drop table t2_2582389;


------------------------------------------------------------------------------
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to