Update of /cvsroot/monetdb/sql/src/storage/bat
In directory
sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv17661/sql/src/storage/bat
Modified Files:
bat_storage.mx
Log Message:
on 64-bit Windows, msvs correctly points out
...\sql\src\storage\bat\bat_storage.mx(627) : warning C4267: "=" conversion
from "size_t" to "int", possible loss of data
fix: use type size_t (instead of int) for local variable cnt
to match type of sql_delta.cnt
Index: bat_storage.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/storage/bat/bat_storage.mx,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- bat_storage.mx 10 Jan 2010 15:33:35 -0000 1.49
+++ bat_storage.mx 11 Jan 2010 11:46:00 -0000 1.50
@@ -619,7 +619,7 @@
return new_persistent_bat(tr, c->data, c->t->sz);
} else if (!bat->ibid) {
sql_column *fc;
- int cnt = 0;
+ size_t cnt = 0;
/* alter ? */
if (c->t->columns.set && (fc = c->t->columns.set->h->data) !=
NULL) {
------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins