Update of /cvsroot/monetdb/sql/src/server
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7127/src/server

Modified Files:
        sql_rel2bin.mx 
Log Message:
icc fixes...


Index: sql_rel2bin.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_rel2bin.mx,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -d -r1.106 -r1.107
--- sql_rel2bin.mx      29 Jun 2007 11:29:05 -0000      1.106
+++ sql_rel2bin.mx      3 Jul 2007 10:35:02 -0000       1.107
@@ -772,7 +772,7 @@
 
        s = push_semijoin(stmt_dup(select->op1.stval), s);
        if (select->type == st_select2) {
-               comp_type cmp = select->flag;
+               comp_type cmp = (comp_type)select->flag;
                stmt *op2 = stmt_dup( select->op2.stval);
                stmt *op3 = stmt_dup( select->op3.stval);
 
@@ -781,7 +781,7 @@
        }
 
        if (select->type == st_uselect2) {
-               comp_type cmp = select->flag;
+               comp_type cmp = (comp_type)select->flag;
                stmt *op2 = stmt_dup( select->op2.stval);
                stmt *op3 = stmt_dup( select->op3.stval);
 
@@ -790,7 +790,7 @@
        }
 
        if (select->type == st_select) {
-               comp_type cmp = select->flag;
+               comp_type cmp = (comp_type)select->flag;
                stmt *op2 = stmt_dup( select->op2.stval);
 
                if (cmp == cmp_like || cmp == cmp_notlike) {
@@ -805,7 +805,7 @@
        }
 
        if (select->type == st_uselect) {
-               comp_type cmp = select->flag;
+               comp_type cmp = (comp_type)select->flag;
                stmt *op2 = stmt_dup( select->op2.stval);
 
                stmt_destroy(select);


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to