Changeset: 5599139a6036 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/5599139a6036
Modified Files:
gdk/gdk_bat.c
Branch: Sep2022
Log Message:
fixed compilation, var not used
diffs (20 lines):
diff --git a/gdk/gdk_bat.c b/gdk/gdk_bat.c
--- a/gdk/gdk_bat.c
+++ b/gdk/gdk_bat.c
@@ -907,7 +907,7 @@ COLcopy(BAT *b, int tt, bool writable, r
bn->batCapacity = 0;
} else if (BATatoms[tt].atomFix || tt != TYPE_void ||
ATOMextern(tt)) {
/* case (4): one-by-one BUN insert (really slow) */
- BUN p, q, r = 0;
+ BUN p, q;
BATloop(b, p, q) {
const void *t = BUNtail(bi, p);
@@ -915,7 +915,6 @@ COLcopy(BAT *b, int tt, bool writable, r
if (bunfastapp_nocheck(bn, t) != GDK_SUCCEED) {
goto bunins_failed;
}
- r++;
}
bn->theap->dirty |= bi.count > 0;
} else if (tt != TYPE_void && bi.type == TYPE_void) {
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]