Update of /cvsroot/monetdb/sql/src/backends/monet4
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11808/src/backends/monet4

Modified Files:
        sql_gencode.mx 
Log Message:
fixes use of txtsim functions

added more optimized versions of cast of mtime types (from string)
added more optimized verion of str to string convert

added use (first steps) of rangejoin

approved tests which changed by this (rangejoin addition)


Index: sql_gencode.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet4/sql_gencode.mx,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -d -r1.161 -r1.162
--- sql_gencode.mx      13 Dec 2007 16:08:16 -0000      1.161
+++ sql_gencode.mx      21 Dec 2007 17:02:22 -0000      1.162
@@ -596,7 +596,8 @@
                        break;
                }
                case st_select2:
-               case st_uselect2:{
+               case st_uselect2:
+               case st_join2:{
                        int l = backend_dumpstmt_(s->op1.stval, nr, sql);
                        int r1 = backend_dumpstmt_(s->op2.stval, nr, sql);
                        int r2 = backend_dumpstmt_(s->op3.stval, nr, sql);
@@ -605,8 +606,10 @@
 
                        if (s->type == st_select2)
                                cmd = "select";
-                       else
+                       else if (s->type == st_uselect2)
                                cmd = "uselect";
+                       else
+                               cmd = "join";
                        switch (s->flag) {
                        case 0:
                                bits = ", FALSE, FALSE";


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to