Changeset: 253737b9e956 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=253737b9e956
Modified Files:
sql/storage/bat/bat_storage.c
Branch: nospare
Log Message:
handle idx's without storage
diffs (13 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
@@ -1898,7 +1898,8 @@ commit_create_del( sql_trans *tr, sql_ch
for(node *n = t->idxs.set->h; n && ok ==
LOG_OK; n = n->next) {
sql_idx *i = n->data;
- ok = commit_create_idx_(tr, i,
commit_ts, oldest);
+ if (i->data)
+ ok = commit_create_idx_(tr, i,
commit_ts, oldest);
}
}
}
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list