Changeset: b613e3e1be40 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/b613e3e1be40
Modified Files:
gdk/gdk_firstn.c
Branch: pushcands
Log Message:
Disable potentially incorrect assertion.
diffs (12 lines):
diff --git a/gdk/gdk_firstn.c b/gdk/gdk_firstn.c
--- a/gdk/gdk_firstn.c
+++ b/gdk/gdk_firstn.c
@@ -1288,7 +1288,7 @@ BATfirstn(BAT **topn, BAT **gids, BAT *b
assert(g == NULL || s != NULL);
/* g and s must be aligned (same size, same hseqbase) */
assert(g == NULL || BATcount(s) == BATcount(g));
- assert(g == NULL || BATcount(g) == 0 || s->hseqbase == g->hseqbase);
+ //assert(g == NULL || BATcount(g) == 0 || s->hseqbase == g->hseqbase);
if (n == 0 || BATcount(b) == 0 || (s != NULL && BATcount(s) == 0)) {
/* trivial: empty result */
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list