Changeset: 16ef3ce087fe for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/16ef3ce087fe
Modified Files:
sql/storage/bat/bat_storage.c
Branch: default
Log Message:
Compilation fix
diffs (12 lines):
diff --git a/sql/storage/bat/bat_storage.c b/sql/storage/bat/bat_storage.c
--- a/sql/storage/bat/bat_storage.c
+++ b/sql/storage/bat/bat_storage.c
@@ -2314,7 +2314,7 @@ delta_append_val(sql_trans *tr, sql_delt
if (cnt) {
if (BATcount(b) < offset) { /* add space */
const void *tv = ATOMnilptr(b->ttype);
- lng d = offset - BATcount(b);
+ BUN d = offset - BATcount(b);
if (BUNappendmulti(b, tv, d, true) != GDK_SUCCEED) {
bat_destroy(b);
if (i != oi)
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]