Update of /cvsroot/monetdb/sql/src/server
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv5551/src/server

Modified Files:
        sql_statement.mx 
Log Message:
propagated changes of Monday Aug 03 2009 - Tuesday Aug 04 2009
from the Aug2009 branch to the development trunk

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2009/08/03 - nielsnes: src/server/sql_statement.mx,1.189.2.1
solved bug in handling not (i)like
allow '*' in selection with other (constant) column expressions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: sql_statement.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_statement.mx,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -d -r1.189 -r1.190
--- sql_statement.mx    2 Aug 2009 19:56:40 -0000       1.189
+++ sql_statement.mx    4 Aug 2009 07:24:43 -0000       1.190
@@ -1551,7 +1551,7 @@
        stmt *s = stmt_create(st_uselect);
 
        assert(cmptype != cmp_like && cmptype != cmp_notlike &&
-                       cmptype != cmp_ilike && cmptype != cmp_notilike);
+              cmptype != cmp_ilike && cmptype != cmp_notilike);
        s->op1.stval = op1;
        s->op2.stval = op2;
        s->flag = cmptype;
@@ -2792,7 +2792,7 @@
        case st_select:
        case st_uselect: 
                        if (s->flag == cmp_like || s->flag == cmp_notlike ||
-                                       s->flag == cmp_ilike || s->flag == 
cmp_notilike)
+                           s->flag == cmp_ilike || s->flag == cmp_notilike)
                                dump3(s, "likeselect", nr);
                        else
                                dump2(s, "select", nr);


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to