Changeset: d73381714fef for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=d73381714fef
Modified Files:
monetdb5/modules/mal/tablet.c
Branch: Jul2015
Log Message:
Don't test whether an array is NULL.
diffs (12 lines):
diff --git a/monetdb5/modules/mal/tablet.c b/monetdb5/modules/mal/tablet.c
--- a/monetdb5/modules/mal/tablet.c
+++ b/monetdb5/modules/mal/tablet.c
@@ -1629,7 +1629,7 @@ SQLload_file(Client cntxt, Tablet *as, b
else
task->maxrow = (BUN) maxrow;
- if (task->fields == 0 || task->cols == 0 || task->time == 0 ||
task->base == 0) {
+ if (task->fields == 0 || task->cols == 0 || task->time == 0) {
tablet_error(task, lng_nil, int_nil, NULL, "SQLload_file");
goto bailout;
}
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list