Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/compiler/mil milprint_summer.c, 1.371, 1.372

2007-05-02 Thread Stefan Manegold
ABORT & ROLLBACK ... like CVS, mailing does not provide full ACID semantics ... Stefan On Wed, May 02, 2007 at 11:49:28PM +0200, Stefan Manegold wrote: > Sjoerd, > > didn't like my fix? ;-) > > Well, actually, I'm afraid you just re-introduced the problem: > in short > > > size_t max

Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/compiler/mil milprint_summer.c, 1.371, 1.372

2007-05-02 Thread Stefan Manegold
Sjoerd, didn't like my fix? ;-) Well, actually, I'm afraid you just re-introduced the problem: in short size_t maxbufsize = 0; char *nme = NULL; while (...) { ... if (maxbufsize < strlen(tpe) + 4) { maxbufsize = strlen(tpe) + 4; nme = nme

Re: [Monetdb-developers] [Monetdb-sql-checkins] sql/src/tools embeddedclient.mx, 1.23, 1.24 monetdb.py.i, 1.5, 1.6 prog.c, 1.17, 1.18

2007-05-02 Thread Jan Rittinger
This problem has gone -- thanks. The next one is already reported :) On 04/29/2007 12:19 PM, Stefan Manegold wrote with possible deletions: > Jan, > > a similar problem actually occurred with nightly testing on Solaris/x86; cf. > http://sourceforge.net/tracker/index.php?func=detail&aid=1709182&gr

Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/compiler/mil milprint_summer.c, 1.367, 1.368

2007-05-02 Thread Sjoerd Mullender
Fabian Groffen wrote: > Hi Jan, > > I experience the same issue. The attached patch works for me. I'm not > sure why it worked for Sjoerd here, so I'm not committing. Because I tried it on Windows using the Intel compiler. > On 02-05-2007 09:52:24 +0200, Jan Flokstra wrote: >> I have great com

Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/compiler/mil milprint_summer.c, 1.367, 1.368

2007-05-02 Thread Sjoerd Mullender
Fixed. Jan Flokstra wrote: > I have great compilation troubles with the last lesson from the master:-) The > compiler doesn not know the realloc() and the malloc() function() in the > current setting. When I change them into PFrealloc() and PFmalloc() it > compiles. But then I still have proble

Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/compiler/mil milprint_summer.c, 1.367, 1.368

2007-05-02 Thread Fabian Groffen
Hi Jan, I experience the same issue. The attached patch works for me. I'm not sure why it worked for Sjoerd here, so I'm not committing. On 02-05-2007 09:52:24 +0200, Jan Flokstra wrote: > I have great compilation troubles with the last lesson from the master:-) The > compiler doesn not know

Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/compiler/mil milprint_summer.c, 1.367, 1.368

2007-05-02 Thread Jan Flokstra
I have great compilation troubles with the last lesson from the master:-) The compiler doesn not know the realloc() and the malloc() function() in the current setting. When I change them into PFrealloc() and PFmalloc() it compiles. But then I still have problems with the "free(buf);" line. There