Changeset: ca2a4727d1a3 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ca2a4727d1a3
Modified Files:
        MonetDB5/src/modules/kernel/batcalc.mx
Branch: Oct2010
Log Message:

a < b  == b > a ( not a < b == b >= a )


diffs (18 lines):

diff -r b334f99ef5fc -r ca2a4727d1a3 MonetDB5/src/modules/kernel/batcalc.mx
--- a/MonetDB5/src/modules/kernel/batcalc.mx    Wed Sep 15 17:40:02 2010 +0200
+++ b/MonetDB5/src/modules/kernel/batcalc.mx    Wed Sep 15 18:29:10 2010 +0200
@@ -1741,10 +1741,10 @@
 @:baselineCode(&&,AND,bit)@
 @:baselineCode(||,OR,bit)@
 
-@:operatorCstImpl(>=,GE,LT)@
-@:operatorCstImpl(<,LT,GE)@
-@:operatorCstImpl(>,GT,LE)@
-@:operatorCstImpl(<=,LE,GT)@
+@:operatorCstImpl(>=,GE,LE)@
+@:operatorCstImpl(<,LT,GT)@
+@:operatorCstImpl(>,GT,LT)@
+@:operatorCstImpl(<=,LE,GE)@
 @:operatorCstImpl(==,EQ,EQ)@
 @:operatorCstImpl(!=,NEQ,NEQ)@
 @:baselineCstCode(&&,AND,bit,AND)@
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to