Re: [Monetdb-developers] [Monetdb-checkins] MonetDB5/src/optimizer opt_recycler.mx, , 1.59, 1.60
Update of /cvsroot/monetdb/MonetDB5/src/optimizer In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5440/MonetDB5/src/optimizer
Modified Files: opt_recycler.mx Log Message:
recycleSeq is stored in MalBlkRecord.recid; since the latter is of type int, it does not make much sense to have the former of type lng.
Or should both be of type lng?
Thanks, the intention was they all to be of type lng. Milena
And what about QryStat.recid? That is (currently) of type lng and used to store MalBlkRecord.recid ...
(found by Microsoft's Visual Studio compiler on Windows)
Index: opt_recycler.mx =================================================================== RCS file: /cvsroot/monetdb/MonetDB5/src/optimizer/opt_recycler.mx,v retrieving revision 1.59 retrieving revision 1.60 diff -u -d -r1.59 -r1.60 --- opt_recycler.mx 2 Dec 2009 13:39:29 -0000 1.59 +++ opt_recycler.mx 10 Dec 2009 22:05:27 -0000 1.60 @@ -104,7 +104,7 @@ #include "opt_recycler.h" #include "mal_instruction.h"
-static lng recycleSeq = 0; +static int recycleSeq = 0;
static int OPTrecycleImplementation(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr p)
------------------------------------------------------------------------------ Return on Information: Google Enterprise Search pays you back Get the facts. http://p.sf.net/sfu/google-dev2dev _______________________________________________ Monetdb-checkins mailing list Monetdb-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-checkins
participants (1)
-
Milena.Ivanova@cwi.nl