Changeset: 2514fcec9698 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2514fcec9698 Modified Files: sql/backends/monet5/sql.c Branch: Dec2016 Log Message:
You cannot assign a BUN to a bit. diffs (12 lines): diff --git a/sql/backends/monet5/sql.c b/sql/backends/monet5/sql.c --- a/sql/backends/monet5/sql.c +++ b/sql/backends/monet5/sql.c @@ -5573,7 +5573,7 @@ SQLexist(bit *res, bat *id) if ((b = BATdescriptor(*id)) == NULL) throw(SQL, "aggr.exist", "Cannot access descriptor"); - *res = BATcount(b); + *res = BATcount(b) != 0; BBPunfix(b->batCacheid); return MAL_SUCCEED; } _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list