Update of /cvsroot/monetdb/sql/src/backends/monet5
In directory 
23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv26044/sql/src/backends/monet5

Modified Files:
        sql_gencode.mx 
Log Message:

Before we keep forgetting this:

Since pushLng() now (correctly) expects type lng (instead of type long),
we can also revert Martin's "Silence compiler" patch, again...


U sql_gencode.mx
Index: sql_gencode.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/sql_gencode.mx,v
retrieving revision 1.292
retrieving revision 1.293
diff -u -d -r1.292 -r1.293
--- sql_gencode.mx      4 Nov 2008 06:55:24 -0000       1.292
+++ sql_gencode.mx      4 Nov 2008 10:39:17 -0000       1.293
@@ -1929,8 +1929,8 @@
         q = newStmt(mb,sqlRef,"keepquery");
                q= pushInt(mb,q,c->history);
                q= pushStr(mb,q,t);
-               q= pushLng(mb,q, (long) (GDKusec() - be->mvc->Tparse) );
-               q= pushLng(mb,q, (long) GDKusec());
+               q= pushLng(mb,q, GDKusec() - be->mvc->Tparse);
+               q= pushLng(mb,q, GDKusec());
                c->Tparse = 0;
        }
 


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to